Compare commits

..

1 Commits

Author SHA1 Message Date
pi
cef9e00819 feat(tcp): include type in wifi hello line
Made-with: Cursor
2026-04-06 00:21:43 +12:00

View File

@@ -126,6 +126,7 @@ hello = {
"v": "1",
"device_name": settings.get("name", ""),
"mac": ubinascii.hexlify(mac).decode().lower(),
"type": "led",
}
hello_bytes = json.dumps(hello).encode("utf-8")
hello_line = hello_bytes + b"\n"