Files
MicroPythonOS/internal_filesystem/lib/mpos/info.py
T
Thomas Farstrike 7fd86daeda Increment version
2026-01-16 17:06:41 +01:00

12 lines
273 B
Python

CURRENT_OS_VERSION = "0.6.1"
# 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