fixed clock class

This commit is contained in:
Hendrik Schutter 2018-11-22 17:15:49 +01:00
parent e192e78d47
commit a7760716cb

View File

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