-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathraspberry_osio_client.h
44 lines (35 loc) · 1.33 KB
/
raspberry_osio_client.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
#ifndef raspberry_osio_client_h
#define raspberry_osio_client_h
#include <mosquitto.h>
// Default MQTT port
#define MQTT_PORT 1883
// Default server name
#define OSIO_SERVERNAME "mqtt.opensensors.io"
class RaspberryOSIOClient
{
private:
mosquitto * _data;
char * _userName;
char * _deviceId;
char * _devicePassword;
char * _serverName;
bool _authenticatedInServer;
bool connectIfNecessary();
void initialize(char * userName, char * deviceId, char * devicePassword, char * serverName, void (*callback)(char*,char*,unsigned int));
public:
RaspberryOSIOClient(char * userName, char * deviceId, char * devicePassword);
RaspberryOSIOClient(char * userName, char * deviceId, char * devicePassword, char * serverName);
RaspberryOSIOClient(char * userName, char * deviceId, char * devicePassword, void (*callback)(char*,char*,unsigned int));
RaspberryOSIOClient(char * userName, char * deviceId, char * devicePassword, char * serverName, void (*callback)(char*,char*,unsigned int));
~RaspberryOSIOClient();
bool publish(char * topic, char * payload);
bool subscribe(char * topic);
bool loop();
bool disconnect();
// We don't recommend use these functions directly.
// They are for internal purposes.
void (*onMessage)(char*,char*,unsigned int);
void (*onDisconnect)(void*);
void resetConnectedState();
};
#endif