单片机互通调试初步完成

This commit is contained in:
2025-05-27 16:44:45 +08:00
parent 22e1109d81
commit 6aaae06bac
22 changed files with 1678 additions and 129 deletions

View File

@@ -0,0 +1,11 @@
#ifndef RELAY_CONTROL_H
#define RELAY_CONTROL_H
#include "config.h"
#include <Arduino.h>
void relay_setup();
void relay_start_charging(); // 闭合继电器,模拟开始充电
void relay_stop_charging(); //断开继电器,模拟停止充电
#endif // RELAY_CONTROL_H