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>
7 lines
133 B
Python
7 lines
133 B
Python
"""Map MicroPython `ubinascii` to CPython `binascii`."""
|
|
|
|
import binascii
|
|
|
|
hexlify = binascii.hexlify
|
|
unhexlify = binascii.unhexlify
|