Version 1.1: Second working version. First commit. Added features: disabling channels for the day by having the same raise and lower timings.

This commit is contained in:
2021-08-30 17:21:29 +02:00
commit 877614b7a3
9 changed files with 378 additions and 0 deletions

29
redony.h Normal file
View File

@@ -0,0 +1,29 @@
//
// Created by lacko on 08/08/2021.
//
#ifndef _REDONY_H_
#define _REDONY_H_
#include <time.h>
typedef struct ido {
int tm_hour;
int tm_min;
} ido;
typedef struct redony {
int ch;
ido up;
ido down;
} redony;
typedef enum buttons {
up = 17,
stop,
down,
prev,
next
} buttons;
#endif //_REDONY_H_