Files
water-management-system/src/iot/__init__.py
T

9 lines
263 B
Python
Raw Normal View History

"""
IoT Module - 物联网平台核心模块
包含MQTT协议适配器、设备注册/发现API、统一设备模型等
"""
from .device_manager import DeviceManager
from .device_controller import DeviceController
__all__ = ['DeviceManager', 'DeviceController']