This commit is contained in:
2026-04-07 09:51:38 +08:00
parent ecba4d726a
commit 00dcd6b6cc
36 changed files with 2857 additions and 505 deletions

View File

@ -97,7 +97,7 @@ class InverterController:
self.inverter.write_register(0x2000, 1) # 1=正转运行
print("启动变频器")
elif action == 'stop':
self.inverter.write_register(0x2000, 5) # 6=减速停机,5自由停机
self.inverter.write_register(0x2000, 6) # 6=减速停机,5自由停机
print("停止变频器")
_ret=True
else: