Files
MicroPythonOS/internal_filesystem/lib/mpos/info.py
T
Thomas Farstrike 0c924b67ec Increment version
2025-11-22 15:33:40 +01:00

12 lines
273 B
Python

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