AboutStringHelper.h 192 B

1234567891011
  1. #include <Arduino.h>
  2. #ifndef _ABOUT_STRING_HELPER_H
  3. #define _ABOUT_STRING_HELPER_H
  4. class AboutStringHelper {
  5. public:
  6. static String generateAboutString(bool abbreviated = false);
  7. };
  8. #endif