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.

10 lines
108 B

  1. #pragma once
  2. struct Time {
  3. uint16_t yyyy;
  4. uint8_t mm;
  5. uint8_t dd;
  6. uint8_t h;
  7. uint8_t m;
  8. uint8_t s;
  9. };