mirror of
https://github.com/Derisis13/Shutter.git
synced 2025-12-07 03:42:48 +01:00
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:
29
redony.h
Normal file
29
redony.h
Normal 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_
|
||||
Reference in New Issue
Block a user