Replace led_hour (etc.) globals with TIME struct

This commit is contained in:
2020-11-18 09:00:09 +01:00
parent b9c0be68d8
commit ed730b8dc3
6 changed files with 28 additions and 31 deletions

11
firmware/time.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef __TIME_H__
#define __TIME_H__
struct TIME
{
uint8_t hour;
uint8_t minute;
uint8_t second;
};
#endif