fixed clock class

This commit is contained in:
Hendrik Schutter 2018-11-22 17:15:49 +01:00
parent e192e78d47
commit a7760716cb
1 changed files with 4 additions and 4 deletions

View File

@ -9,10 +9,10 @@
#define SRC_CLOCK_H_ #define SRC_CLOCK_H_
struct time_t { struct time_t {
uint8_t diffHour; unsigned int diffHour;
uint8_t diffMinute; unsigned int diffMinute;
uint8_t diffSecond; unsigned int diffSecond;
uint32_t seconds; unsigned int seconds;
}; };
class clock { class clock {