25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

28 lines
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 */