This commit is contained in:
2026-08-18 17:56:40 +05:00
parent 046284e9d8
commit f10f9de524
4 changed files with 260 additions and 30 deletions
+6
View File
@@ -1,2 +1,8 @@
import wifi_server
from machine import Pin
from neopixel import NeoPixel
np = NeoPixel(Pin(8), 1)
np[0] = (0, 0, 0)
np.write()
wifi_server.main()