z-ezTimeLog.ino 959 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. *
  3. * This is a "z-sketch". It means you can run this sketch on its own, or use it as a sub-sketch of some bigger program
  4. * See the M5ez user manual under z-sketches at https://github.com/M5ez/M5ez
  5. *
  6. * This program sets the ezTime NTP interval to 20 seconds (way too often, use only for demonstration purposes) and
  7. * then show the debug log of ezTime so you can see it update its clock. The output will scroll when it reaches the
  8. * bottom of the screen.
  9. *
  10. */
  11. #ifndef MAIN_DECLARED
  12. #include <M5Stack.h>
  13. #include <M5ez.h>
  14. #include <ezTime.h>
  15. void setup() {
  16. ez.begin();
  17. ezTimeLog();
  18. while(true) {
  19. ez.yield();
  20. }
  21. }
  22. void loop() {
  23. }
  24. #endif // #ifndef MAIN_DECLARED
  25. void ezTimeLog() {
  26. ez.header.show("ezTime log");
  27. ez.canvas.scroll(true);
  28. ezt::setDebug(INFO, ez.canvas);
  29. ezt::setInterval(20);
  30. #ifdef MAIN_DECLARED
  31. ez.buttons.wait("Abort");
  32. ezt::setDebug(NONE, Serial);
  33. ezt::setInterval(600);
  34. #endif
  35. }