mirror of https://github.com/jeelabs/esp-link.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
227 B
12 lines
227 B
9 years ago
|
#ifndef _LATCH_JSON_H_
|
||
|
#define _LATCH_JSON_H_
|
||
|
#include <esp8266.h>
|
||
|
|
||
|
typedef struct {
|
||
|
uint8_t fallbackStateBits;
|
||
|
uint8_t stateBits;
|
||
|
uint8_t init;
|
||
|
uint8_t fallbackSecondsForBits[8];
|
||
|
} LatchState;
|
||
|
|
||
|
#endif // _LATCH_JSON_H_
|