重构目录结构:调整项目布局

This commit is contained in:
cdeyw
2025-09-26 13:32:34 +08:00
parent 486645a3aa
commit 3ebc4c3765
64 changed files with 2847 additions and 0 deletions

10
hardware/__init__.py Normal file
View File

@ -0,0 +1,10 @@
# hardware/__init__.py
"""
硬件控制模块
包含所有硬件设备的控制接口
"""
from .relay import RelayController
from .inverter import InverterController
from .transmitter import TransmitterController
__all__ = ['RelayController', 'InverterController', 'TransmitterController']