能源管控程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

26 строки
370 B

  1. #include <Arduino.h>
  2. #include "ModbusRtu.h"
  3. #include "MqttHelper.h"
  4. #include "Json.h"
  5. #include "Global.h"
  6. /**
  7. * @brief 电力设备
  8. *
  9. */
  10. class ElectricityDevice
  11. {
  12. private:
  13. const byte interruptPin = 21;
  14. public:
  15. ElectricityDevice(/* args */);
  16. ~ElectricityDevice();
  17. void Init();
  18. void Start();
  19. };
  20. extern ElectricityDevice _electricityDevice;