Вы не можете выбрать более 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 */