Stairs/src/global.h
Mark van Renswoude f87a8b6eb7 Changed from UDP to HTTP
Implemented access point, station mode and basic web configuration page
Actual lighting control is completely broken
2018-01-01 19:56:07 +01:00

21 lines
383 B
C

/*
* Stairs
* Copyright 2017 (c) Mark van Renswoude
*
* https://git.x2software.net/pub/Stairs
*/
#ifndef __global
#define __global
#include <stdint.h>
#include <stdbool.h>
#include <IPAddress.h>
#include "settings/connection.h"
extern ConnectionSettings* connectionSettings;
extern bool connectionSettingsChanged;
extern uint32_t currentTime;
extern IPAddress emptyIP;
#endif