能源管控程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

37 lines
499 B

  1. #ifndef Json_h
  2. #define Json_h
  3. #include <Arduino.h>
  4. #include "Global.h"
  5. class Json
  6. {
  7. private:
  8. public:
  9. Json(/* args */);
  10. ~Json();
  11. /**
  12. * @brief 设备状态Json数据上报
  13. *
  14. */
  15. String StatusDataReport();
  16. /**
  17. * @brief 电能数据josn封装
  18. *
  19. * @return String
  20. */
  21. String PowerHarvesting();
  22. /**
  23. * @brief 解析获取到的电能数据
  24. *
  25. * @param str
  26. */
  27. void ParseJson(String str);
  28. };
  29. extern Json myJson;
  30. #endif