From d589cc84ea3a59700d55dace96ec1a92a45f80f3 Mon Sep 17 00:00:00 2001 From: Jan Jaap Date: Mon, 18 Dec 2023 00:44:30 +0100 Subject: [PATCH] fix: update section setup and README --- README.md | 5 +++++ web-ui/src/main.ts | 2 ++ 2 files changed, 7 insertions(+) diff --git a/README.md b/README.md index 998b0be..cb9440c 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,11 @@ This project, also known as "RotorHazard OSD Injector", is a firmware for ESP8266. It connects via websockets (WiFi) to a RotorHazard instance. RotorHazard is a Race Timer for FPV drones which tracks the time one needs to finish a lap in a race and automatically tracks the race with up to 8 pilots. The ESP is connected via a serial UART to the flight controller of the drone and sends "MSP" commands to set the internal name of the drone to messages that represent events that happen in the race timer. +> ## DEPRECATED +> well kinda... at least for people who use an ELRS Transmission system with a ELRS TX that has an ELRS Backpack connected to it or HDZero Goggles (or simmiliar) with a ELRS Backpack that supports rendering custom OSD Elements. +> If this describes you, you should check out this project instead: +> [UAV-Painkillers/VRxC_ELRS](https://github.com/UAV-Painkillers/VRxC_ELRS) + ## Prerequisites You need an ESP of the ESP8266 family. The simplest, smallest, and most lightweight option is to buy a "BetaFPV ELRS RX Lite" receiver which has an ESP8285 onboard and exactly one UART available for communicating with the drone. diff --git a/web-ui/src/main.ts b/web-ui/src/main.ts index c9e6c54..572faea 100644 --- a/web-ui/src/main.ts +++ b/web-ui/src/main.ts @@ -7,6 +7,7 @@ import { setupRotorHazardSection } from "./sections/rh.section"; import { setupHotspotSection } from "./sections/hotspot.section"; import { setupOTASection } from "./sections/ota.section"; import { setupLoggingSection } from "./sections/logging.section"; +import { setupUpdateSection } from "./sections/update.section"; document.addEventListener("DOMContentLoaded", async () => { setupAuthenticationOverlay(); @@ -15,6 +16,7 @@ document.addEventListener("DOMContentLoaded", async () => { setupWiFiSection(); setupOTASection(); setupLoggingSection(); + setupUpdateSection(); Api.getAllData(); Api.authenticate();