Files
MicroPythonOS/internal_filesystem/lib/mpos/info.py
T
2025-11-12 14:48:29 +01:00

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