mirror of
https://github.com/Derisis13/Shutter.git
synced 2025-12-07 03:42:48 +01:00
63 lines
2.0 KiB
C
Executable File
63 lines
2.0 KiB
C
Executable File
#include "timing.h"
|
|
#include "moving.h"
|
|
#include <stdio.h>
|
|
#define FILEPATH "schedule.txt"
|
|
#define N_of_Shutters 7
|
|
#define rolltimelist {23, 23, 23, 23, 16, 23, 33}
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* SHUTTER AUTOMATA
|
|
* -----------------
|
|
* C program for automating remote controlled shutters via an embedded linux platform and a paired remote.
|
|
* This program needs to be called by a scheduler (like Cron) in few minute intervals.
|
|
* Raise and lowering times are defined in the rolltimelist macro. The N_of_Shutters macro contains the f
|
|
* well as the desired lowering percentages are read from a local file (schedule.txt), and
|
|
* are executed; the schedule contains one full week.
|
|
* .
|
|
* The program is compiled to openwrt 19.07.8; HW: D-Link DIR-600 rev.B6E
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
int main ()
|
|
{
|
|
//set up linked list of shutters
|
|
shutter *ercsi13 = NULL;
|
|
byte rolltimes[] = rolltimelist;
|
|
for (int i = 0; i < N_of_Shutters; ++i)
|
|
{
|
|
shutter *tmpshutter = create_shutter ((byte)(i + 1), rolltimes[i]);
|
|
append_shutter (&ercsi13, tmpshutter);
|
|
}
|
|
|
|
//get the time of launch
|
|
time_t t = time (NULL);
|
|
struct tm *now = localtime (&t);
|
|
|
|
//scan the schedule
|
|
|
|
for (shutter *tmp = ercsi13; tmp != NULL; tmp = tmp->next)
|
|
{
|
|
FILE *schedule = fopen (FILEPATH, "r");
|
|
find_today (schedule);
|
|
get_timing (tmp, schedule);
|
|
fclose (schedule);
|
|
}
|
|
|
|
reset ();
|
|
byte ch = 1; //remote defaults to ch 1
|
|
|
|
//check timings and act accordingly
|
|
for (shutter *tmp = ercsi13; tmp != NULL; tmp = tmp->next)
|
|
{
|
|
set_ch (tmp, &ch);
|
|
switch (check_timing (tmp, now))
|
|
{
|
|
case up:press_button (up);
|
|
break;
|
|
case stop:break;
|
|
case down:lower (tmp);
|
|
break;
|
|
case prev:
|
|
case next:break;
|
|
};
|
|
}
|
|
free_shutters (ercsi13);
|
|
return 0;
|
|
} |