You've already forked MicroPythonOS
mirror of
https://github.com/m5stack/MicroPythonOS.git
synced 2026-05-20 11:51:27 -07:00
12 lines
273 B
Python
12 lines
273 B
Python
CURRENT_OS_VERSION = "0.3.2"
|
|
|
|
# Unique string that defines the hardware, used by OSUpdate and the About app
|
|
_hardware_id = "missing-hardware-info"
|
|
|
|
def set_hardware_id(value):
|
|
global _hardware_id
|
|
_hardware_id = value
|
|
|
|
def get_hardware_id():
|
|
return _hardware_id
|