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

31 строка
435 B

  1. #include <Arduino.h>
  2. #include "ModbusRtu.h"
  3. #include "MqttHelper.h"
  4. #include "Json.h"
  5. #include "Global.h"
  6. #include <ArduinoQueue.h>
  7. #include <cJSON.h>
  8. #include <FreeRTOS.h>
  9. #define MAXITEMS 1000
  10. #define MAXMEMORY 1000
  11. /**
  12. * @brief 主设备
  13. *
  14. */
  15. class MainDevice
  16. {
  17. private:
  18. TaskHandle_t MqttTest;
  19. public:
  20. MainDevice(/* args */);
  21. ~MainDevice();
  22. void Init();
  23. void Start();
  24. };
  25. extern MainDevice _mainDevice;