2018-01-01 18:56:07 +00:00
|
|
|
/*
|
|
|
|
* 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"
|
2018-01-04 21:53:16 +00:00
|
|
|
#include "settings/steps.h"
|
|
|
|
#include "stairs.h"
|
2018-01-01 18:56:07 +00:00
|
|
|
|
|
|
|
extern ConnectionSettings* connectionSettings;
|
|
|
|
extern bool connectionSettingsChanged;
|
2018-01-03 20:44:34 +00:00
|
|
|
|
2018-01-04 21:53:16 +00:00
|
|
|
extern StepsSettings* stepsSettings;
|
|
|
|
extern bool stepsSettingsChanged;
|
|
|
|
|
|
|
|
extern Stairs* stairs;
|
|
|
|
|
2018-01-03 20:44:34 +00:00
|
|
|
extern bool shouldReboot;
|
|
|
|
|
2018-01-01 18:56:07 +00:00
|
|
|
extern uint32_t currentTime;
|
|
|
|
|
|
|
|
extern IPAddress emptyIP;
|
|
|
|
|
|
|
|
#endif
|