This repository has been archived by the owner on Jan 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathSAMD-Client_SINRIC.ino
263 lines (215 loc) · 6.38 KB
/
SAMD-Client_SINRIC.ino
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
/****************************************************************************************************************************
SAMD-Client_SINRIC.ino
For SAMD21/SAMD51 with WiFiNINA module/shield.
Based on and modified from Gil Maimon's ArduinoWebsockets library https://github.com/gilmaimon/ArduinoWebsockets
to support STM32F/L/H/G/WB/MP1, nRF52 and SAMD21/SAMD51 boards besides ESP8266 and ESP32
The library provides simple and easy interface for websockets (Client and Server).
Example first created on: 10.05.2018
Original Author: Markus Sattler
Built by Khoi Hoang https://github.com/khoih-prog/Websockets2_Generic
Licensed under MIT license
*****************************************************************************************************************************/
/****************************************************************************************************************************
SAMD21/SAMD51 Websockets SINRIC Client
This sketch:
1. Connects to a WiFi network
2. Connects to a Websockets SINRIC server
3. Control the LED_BUILTIN using SINRIC/Alexa commands
Hardware:
For this sketch you only need a SAMD21/SAMD51 board.
*****************************************************************************************************************************/
#include "defines.h"
#define DEBUG_LOCAL 2
#include <WebSockets2_Generic.h>
#include <ArduinoJson.h> // https://arduinojson.org/ or install via Arduino library manager
using namespace websockets2_generic;
WebsocketsClient client;
#define HEARTBEAT_INTERVAL 300000 // 5 Minutes
bool isConnected = false;
uint64_t heartbeatTimestamp = 0;
uint64_t now = 0;
//To increase no of devices as needed
void turnOn(String deviceId)
{
if (deviceId == SINRIC_Device_ID_1) // Device ID of 1st device
{
#if (DEBUG_LOCAL > 1)
Serial.print("Turn on device id: ");
Serial.println(deviceId);
#endif
digitalWrite(LED_PIN, HIGH);
}
else
{
#if (DEBUG_LOCAL > 1)
Serial.print("Turn on for unknown device id: ");
Serial.println(deviceId);
#endif
}
}
//To increase no of devices as needed
void turnOff(String deviceId)
{
if (deviceId == SINRIC_Device_ID_1) // Device ID of 1st device
{
#if (DEBUG_LOCAL > 1)
Serial.print("Turn off Device ID: ");
Serial.println(deviceId);
#endif
digitalWrite(LED_PIN, LOW);
}
else
{
#if (DEBUG_LOCAL > 1)
Serial.print("Turn off for unknown device id: ");
Serial.println(deviceId);
#endif
}
}
void onEventsCallback(WebsocketsEvent event, String data)
{
(void) data;
if (event == WebsocketsEvent::ConnectionOpened)
{
if (!isConnected)
isConnected = true;
Serial.println("Connnection Opened");
}
else if (event == WebsocketsEvent::ConnectionClosed)
{
if (isConnected)
isConnected = false;
Serial.println("Connnection Closed");
}
else if (event == WebsocketsEvent::GotPing)
{
if (!isConnected)
isConnected = true;
Serial.println("Got a Ping!");
}
else if (event == WebsocketsEvent::GotPong)
{
if (!isConnected)
isConnected = true;
Serial.println("Got a Pong!");
}
}
void onMessagesCallback(WebsocketsMessage message)
{
String SINRIC_message = message.data();
Serial.print("Got Message: ");
Serial.println(SINRIC_message /*message.data()*/);
// Example payloads
// For Switch or Light device types
// {"deviceId": xxxx, "action": "setPowerState", value: "ON"} // https://developer.amazon.com/docs/device-apis/alexa-powercontroller.html
// For Light device type
// Look at the light example in github
#if (ARDUINOJSON_VERSION_MAJOR >= 6)
DynamicJsonDocument json(1024);
//auto deserializeError = deserializeJson(json, (char*)message.data());
auto deserializeError = deserializeJson(json, SINRIC_message);
if ( deserializeError )
{
Serial.println("JSON parseObject() failed");
return;
}
//serializeJson(json, Serial);
#else
DynamicJsonBuffer jsonBuffer;
// Parse JSON string
JsonObject& json = jsonBuffer.parseObject(SINRIC_message);
// Test if parsing succeeds.
if (!json.success())
{
Serial.println("JSON parseObject() failed");
return;
}
#endif
String deviceId = json ["deviceId"];
String action = json ["action"];
if (action == "setPowerState")
{
// Switch or Light
String value = json ["value"];
if (value == "ON")
{
turnOn(deviceId);
}
else
{
turnOff(deviceId);
}
}
}
void setup()
{
pinMode(LED_PIN, OUTPUT);
digitalWrite(LED_PIN, LOW);
Serial.begin(115200);
while (!Serial && millis() < 5000);
Serial.println("\nStarting SAMD-Client_SINRIC with WiFiNINA on " + String(BOARD_NAME));
Serial.println(WEBSOCKETS2_GENERIC_VERSION);
// check for the WiFi module:
if (WiFi.status() == WL_NO_MODULE)
{
Serial.println("Communication with WiFi module failed!");
// don't continue
return;
}
String fv = WiFi.firmwareVersion();
if (fv < WIFI_FIRMWARE_LATEST_VERSION)
{
Serial.println("Please upgrade the firmware");
}
Serial.print("Attempting to connect to SSID: ");
Serial.println(ssid);
// Connect to wifi
WiFi.begin(ssid, password);
// Wait some time to connect to wifi
for (int i = 0; i < 10 && WiFi.status() != WL_CONNECTED; i++)
{
Serial.print(".");
delay(1000);
}
if (WiFi.status() == WL_CONNECTED)
{
Serial.print("Connected to Wifi, IP address: ");
Serial.println(WiFi.localIP());
Serial.print("Connecting to WebSockets Server @");
Serial.println(websockets_server_host);
}
else
{
Serial.println("\nNo WiFi");
return;
}
// run callback when events are occuring
client.onMessage(onMessagesCallback);
// try to connect to Websockets server
client.addHeader("apikey", SINRIC_API_KEY);
client.setAuthorization("apikey", SINRIC_API_KEY);
bool connected = client.connect(websockets_server_host, websockets_server_port, "/");
if (connected)
{
Serial.println("Connected!");
}
else
{
Serial.println("Not Connected!");
}
}
void loop()
{
// let the websockets client check for incoming messages
if (client.available())
{
client.poll();
now = millis();
// Send heartbeat in order to avoid disconnections during ISP resetting IPs over night. Thanks @MacSass
if ((now - heartbeatTimestamp) > HEARTBEAT_INTERVAL)
{
heartbeatTimestamp = now;
client.send("H");
}
}
}