您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

28 行
440 B

  1. /*
  2. * File: ChaletPowerRelay.h
  3. * Author: JF
  4. *
  5. * Created on November 30, 2018, 7:33 PM
  6. */
  7. #ifndef BATTERYMONITOR_H
  8. #define BATTERYMONITOR_H
  9. #include "define.h"
  10. void InitBatteryMonitor();
  11. void BatteryMonitorTick();
  12. float GetBatteryVoltage(int Reset);
  13. int GetSolarPanelCurrent();
  14. int GetBatterySOC();
  15. int SendNetworkBatteryData();
  16. bool GetCurrentModuleOK();
  17. float GetConvertedSolarPanelCurrent();
  18. #endif /* BATTERYMONITOR_H */