"""Host-only: led-simulator registers the Microdot app so Stop can call shutdown().""" _app = None def register_app(app): global _app _app = app def get_app(): return _app def clear_app(): global _app _app = None