Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

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