Add support for night mode

This commit is contained in:
2020-11-19 18:05:49 +01:00
parent 0f2dca5ec7
commit 8b47ed295e
12 changed files with 173 additions and 30 deletions

View File

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