v0.0.6(2024/05/23)
1. 为了调整多功能框架,aio.py文件将会作为入口程序存在,不实现具体功能,功能的实现将由具体的功能脚本实现,aio.py只负责条件调用
2. 新增了自动化处理电流数据(电机/过载)的功能
This commit is contained in:
2024-05-23 17:35:34 +08:00
parent 7123fa1147
commit e11dc60438
6 changed files with 133 additions and 12 deletions

View File

@@ -313,7 +313,7 @@ def execution(args):
time_end = time.time()
time_total = time_end - time_start
msg = f"数据处理时间:{time_total // 3600:02} h {time_total % 3600 // 60:02} min {time_total % 60:02} s"
msg = f"数据处理时间:{time_total // 3600:02} h {time_total % 3600 // 60:02} min {time_total % 60:02.0f} s"
warn_pause_exit(msg, 1, 0)