feat(simulator): add GUI runner, stubs, and workspace assets

Add host simulator scaffolding, examples, and docs so led-driver main can run end-to-end with MicroPython module stubs.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-05-04 22:48:54 +12:00
parent 7ce56b64df
commit 42c14361e8
20 changed files with 513 additions and 0 deletions

6
stubs/ubinascii.py Normal file
View File

@@ -0,0 +1,6 @@
"""Map MicroPython `ubinascii` to CPython `binascii`."""
import binascii
hexlify = binascii.hexlify
unhexlify = binascii.unhexlify