Add IMU telemetry pipeline and live sensor UI.

Wire LSM6DS3 readings into the runtime telemetry stream, expose them over web endpoints, and render live voltage/IMU data in the dashboard with websocket updates.

Made-with: Cursor
This commit is contained in:
2026-04-01 23:04:41 +13:00
parent d0d73b422d
commit 397d48a43a
10 changed files with 948 additions and 479 deletions

9
test/leds.py Normal file
View File

@@ -0,0 +1,9 @@
from machine import Pin
from neopixel import NeoPixel
led = NeoPixel(Pin(18, Pin.OUT), 10)
led.fill((255, 0, 0))
led.write()