20 lines
258 B
C++
20 lines
258 B
C++
#ifndef SHADE_H
|
|
#define SHADE_H
|
|
|
|
#include <stdint.h>
|
|
#include <string>
|
|
|
|
struct Shade {
|
|
uint16_t ID;
|
|
std::string key;
|
|
std::string friendlyName;
|
|
|
|
std::string state;
|
|
|
|
int8_t lastPosition;
|
|
int8_t lastBattery;
|
|
|
|
bool modified;
|
|
};
|
|
|
|
#endif // SHADE_H
|