Files
led-fan/test/leds.py
Jimmy 397d48a43a 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
2026-04-01 23:04:41 +13:00

10 lines
129 B
Python

from machine import Pin
from neopixel import NeoPixel
led = NeoPixel(Pin(18, Pin.OUT), 10)
led.fill((255, 0, 0))
led.write()