-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathMicroGear.h
157 lines (135 loc) · 4.03 KB
/
MicroGear.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/*
MicroGear-Arduino-ESP8255 library
NetPIE Project
http://netpie.io
*/
#ifndef MICROGEAR_H
#define MICROGEAR_H
#include <stdio.h>
#include <ESP8266WiFi.h>
#include "PubSubClient.h"
#include "MQTTClient.h"
#include <EEPROM.h>
#include "SHA1.h"
#include "AuthClient.h"
//#include "debug.h"
#define GEARAUTHHOST "ga.netpie.io"
#define GBPORT 1883
#define GBSECUREPORT 8883
#define DEFAULTSECUREMODE false
#define MINBACKOFFTIME 10
#define MAXBACKOFFTIME 10000
#define MAXENDPOINTLENGTH 200
#define MAXTOPICSIZE 128
#define MAXBUFFSIZE 128
#define KEYSIZE 16
#define TOKENSIZE 16
#define TOKENSECRETSIZE 32
#define USERNAMESIZE 65
#define PASSWORDSIZE 28
#define REVOKECODESIZE 28
#define FLAGSIZE 4
#define FINGERPRINTSIZE 60
#define HMACSIZE 28
#define EEPROM_STATE_NUL 65
#define EEPROM_STATE_REQ 66
#define EEPROM_STATE_ACC 67
#define EEPROM_STATEOFFSET 0
#define EEPROM_KEYOFFSET 1
#define EEPROM_TOKENOFFSET 17
#define EEPROM_TOKENSECRETOFFSET 33
#define EEPROM_REVOKECODEOFFSET 65
#define EEPROM_ENDPOINTSOFFSET 93
#define EEPROM_CERTFINGERPRINT 141
#define MICROGEAR_NOTCONNECT 0
#define MICROGEAR_CONNECTED 1
#define MICROGEAR_REJECTED 2
#define RETRY 3
#define MQTTCLIENT_NOTCONNECTED 0
#define MQTTCLIENT_CONNECTED 1
#define NETPIECLIENT_CONNECTED 0
#define NETPIECLIENT_NOTCONNECTED 1
#define NETPIECLIENT_TOKENERROR 2
/* Event Type */
#define MESSAGE 1
#define PRESENT 2
#define ABSENT 3
#define CONNECTED 4
#define CALLBACK 5
#define ERROR 6
#define INFO 7
class MicroGear {
private:
char* appid;
char* gearname;
char* gearkey;
char* gearsecret;
char* gearalias;
char* scope;
char* token;
char* tokensecret;
char mqtt_client_type;
unsigned long bootts;
int eepromoffset;
bool eepromready;
int backoff, retry;
char gearauth[MAXGEARAUTHSIZE+1];
void* self;
AuthClient* authclient;
MQTTClient *mqttclient;
Client *sockclient;
int connectBroker(char*);
int getHTTPReply(Client*, char*, size_t);
bool clientReadln(Client*, char*, size_t);
void syncTime(Client*, unsigned long*);
void initEndpoint(Client*, char*);
bool getToken(char*, char*, char*, char*, char*);
public:
int constate;
char* endpoint;
bool securemode;
MicroGear(Client&);
void setName(char*);
void setAlias(char*);
void useTLS(bool);
int connect(char*);
bool connected();
bool publish(char*, char*);
bool publish(char*, char*, bool);
bool publish(char*, double);
bool publish(char*, double, bool);
bool publish(char*, double, int);
bool publish(char*, double, int, bool);
bool publish(char*, int);
bool publish(char*, int, bool);
bool publish(char*, String);
bool publish(char*, String, bool);
bool publish(char*, String, String);
bool publish(char*, String, char*);
bool writeFeed(char*, char*);
bool writeFeed(char*, char*, char*);
bool writeFeed(char*, String);
bool writeFeed(char*, String, char*);
bool chat(char*, char*);
bool chat(char*, int);
bool chat(char*, double);
bool chat(char*, double, int);
bool chat(char*, String);
void subscribe(char*);
void unsubscribe(char*);
int state();
void loop();
void resetToken();
void setToken(char*, char*, char*);
int init(char*, char*);
int init(char*, char*, char*);
int init(char*, char*, char*, char*);
void resetEndpoint();
void strcat(char*, char*);
void on(unsigned char,void (* callback)(char*, uint8_t*,unsigned int));
void setEEPROMOffset(int);
void readEEPROM(char*,int, int);
void writeEEPROM(char*,int, int);
int setConfig(char*, char*);
};
#endif