Allows my home wiz lights to be timed on and off according to a schedule.

Dependents:   heating

wiz/wiz.c

Committer:
andrewboyson
Date:
2021-05-10
Revision:
0:9af80a39adcc

File content as of revision 0:9af80a39adcc:

#include <time.h>

#include "user.h"
#include "wiz-sched.h"
#include "wiz-list.h"
#include "wiz-sun.h"
#include "wiz-send.h"
#include "wiz-recv.h"
#include "led.h"


bool WizTrace = true;

void WizMain()
{
    WizListMain();
    WizSchedMain();
}

void WizInit()
{
    WizRecvInit();
    WizSendInit();
    WizListInit();
    WizSchedInit();
}