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

21
mozgatas_demo.h Normal file
View File

@@ -0,0 +1,21 @@
//
// Created by lacko on 19/08/2021.
//
#ifndef _MOZGATAS_DEMO_H_
#define _MOZGATAS_DEMO_H_
#include "redony.h"
//beállítja a távirányítón a kívánt redőny csatornáját
void set_ch (redony *r);
//megnyomja a kívánt gombot
void press_button (buttons b);
//exportálja a használt GPIO-kat
void export ();
//reseteli a távirányítót, hogy a 0-ás csatornáról kezdjünk
void reset ();
#endif //_MOZGATAS_DEMO_H_