AboutHelper.h 291 B

12345678910111213
  1. #include <Arduino.h>
  2. #include <ArduinoJson.h>
  3. #ifndef _ABOUT_STRING_HELPER_H
  4. #define _ABOUT_STRING_HELPER_H
  5. class AboutHelper {
  6. public:
  7. static String generateAboutString(bool abbreviated = false);
  8. static void generateAboutObject(JsonDocument& obj, bool abbreviated = false);
  9. };
  10. #endif