-
Notifications
You must be signed in to change notification settings - Fork 319
/
_P197_RFLink_MQTT_Bridge.ino
724 lines (613 loc) · 26.3 KB
/
_P197_RFLink_MQTT_Bridge.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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
// #ifdef USES_P197
//#######################################################################################################
//############################## Plugin 197: RFLink MQTT Bridge #########################################
//#######################################################################################################
// This plugin's structure is based on the ser2net plugin (P020), the MQTT handling
// is based on the MQTT import plugin (P037) and the RFLink message parsing
// is based on Phil Wilson's rflink-to-mqtt bridge (https://github.com/Phileep/rflink-to-mqtt.git)
#define PLUGIN_197
#define PLUGIN_ID_197 197
#define PLUGIN_NAME_197 "RFLink MQTT bridge"
#define PLUGIN_VALUENAME1_197 "rflinkMQTT"
#define PLUGIN_RECV_MQTT 197 // This is a 'private' function used only by this bridge module
#define P197_BUFFER_SIZE 192
#define P197_HUMMAX 100.0
// Arduino JSON library, https://github.com/bblanchon/ArduinoJson
#include <ArduinoJson.h>
WiFiClient espclient_197;
PubSubClient *MQTTclient_197 = NULL; // Create a new pubsub instance
char *P197_serial_buf = NULL;
size_t P197_bytes_read = 0;
typedef struct RFLink_MQTT_config{
char subscribe[128];
char publish[128];
bool sendRaw;
bool sendJSON;
bool includeSwitch;
} RFLink_MQTT_config;
boolean Plugin_197(byte function, struct EventStruct *event, String& string)
{
boolean success = false;
String tmpClientName = F("%sysname%-RFLink-MQTT");
String ClientName = parseTemplate(tmpClientName, 0);
switch (function)
{
case PLUGIN_DEVICE_ADD:
{
Device[++deviceCount].Number = PLUGIN_ID_197;
Device[deviceCount].Type = DEVICE_TYPE_DUMMY;
Device[deviceCount].VType = SENSOR_TYPE_SINGLE;
Device[deviceCount].Ports = 0;
Device[deviceCount].PullUpOption = false;
Device[deviceCount].InverseLogicOption = false;
Device[deviceCount].FormulaOption = false;
Device[deviceCount].ValueCount = 0;
Device[deviceCount].SendDataOption = false;
Device[deviceCount].TimerOption = false;
break;
}
case PLUGIN_GET_DEVICENAME:
{
string = F(PLUGIN_NAME_197);
break;
}
case PLUGIN_GET_DEVICEVALUENAMES:
{
break;
}
case PLUGIN_WEBFORM_LOAD:
{
RFLink_MQTT_config cfg;
LoadCustomTaskSettings(event->TaskIndex, (byte*)&cfg, sizeof(cfg));
addFormHeader(F("Serial Settings"));
// addHtml(F("<tr><td colspan='2'>These are global ESPEasy settings (<a href='/advanced'>advanced configuration</a>), duplicated here for convenience. This RFLink to MQTT bridge needs serial enabled (57600 baud) and log level set to none.</td></tr>"));
// addFormCheckBox(F("Enable Serial port"), F("useserial"), Settings.UseSerial);
// addFormNumericBox(F("Baud Rate"), F("baudrate"), Settings.BaudRate, 0, 1000000);
// addFormLogLevelSelect(F("Serial log Level"), F("serialloglevel"), Settings.SerialLogLevel);
addHtml(F("<tr><td colspan='2'>ATTENTION: The global serial console (<a href='/advanced'>advanced settings</a>) must be disabled, otherwise debug output will be sent to the RFLink device, causing endless loops!</td></tr>"));
addFormNumericBox(F("Baud Rate"), F("plugin_197_baud"), ExtraTaskSettings.TaskDevicePluginConfigLong[1]);
addFormNumericBox(F("Data bits"), F("plugin_197_data"), ExtraTaskSettings.TaskDevicePluginConfigLong[2]);
byte choice = ExtraTaskSettings.TaskDevicePluginConfigLong[3];
String options[3];
options[0] = F("No parity");
options[1] = F("Even");
options[2] = F("Odd");
int optionValues[3];
optionValues[0] = 0;
optionValues[1] = 2;
optionValues[2] = 3;
addFormSelector(F("Parity"), F("plugin_197_parity"), 3, options, optionValues, choice);
addFormNumericBox(F("Stop bits"), F("plugin_197_stop"), ExtraTaskSettings.TaskDevicePluginConfigLong[4]);
addFormHeader(F("MQTT Settings"));
addHtml(F("<tr><td colspan='2'>The first MQTT-enabled <a href='/controllers'>controller</a> will be used as MQTT broker with the topics defined here.</td></tr>"));
addFormTextBox(F("Publish topic"), F("plugin_197_publish"), cfg.publish, sizeof(cfg.publish) - 1);
addFormTextBox(F("Subscribe topic"), F("plugin_197_subscribe"), cfg.subscribe, sizeof(cfg.subscribe) - 1);
addFormSeparator(2);
addFormCheckBox(F("Send raw message"), F("plugin_197_sendraw"), cfg.sendRaw);
addFormCheckBox(F("Send JSON message"), F("plugin_197_sendjson"), cfg.sendJSON);
addFormCheckBox(F("Include Switch in publish path"), F("plugin_197_includeswitch"), cfg.includeSwitch);
success = true;
break;
}
case PLUGIN_WEBFORM_SAVE:
{
RFLink_MQTT_config cfg;
LoadCustomTaskSettings(event->TaskIndex, (byte*)&cfg, sizeof(cfg));
// Serial Settings
ExtraTaskSettings.TaskDevicePluginConfigLong[1] = getFormItemInt(F("plugin_197_baud"));
ExtraTaskSettings.TaskDevicePluginConfigLong[2] = getFormItemInt(F("plugin_197_data"));
ExtraTaskSettings.TaskDevicePluginConfigLong[3] = getFormItemInt(F("plugin_197_parity"));
ExtraTaskSettings.TaskDevicePluginConfigLong[4] = getFormItemInt(F("plugin_197_stop"));
// Settings.UseSerial = isFormItemChecked(F("useserial"));
// setLogLevelFor(LOG_TO_SERIAL, getFormItemInt(F("serialloglevel")));
// Settings.BaudRate = getFormItemInt(F("baudrate"));
// Sanity checks: Need serial enabled with 57600 baud and no logging
if (Settings.TaskDeviceEnabled[event->TaskIndex]) {
if (Settings.UseSerial) {
addHtmlError(F("The RFLink to MQTT bridge will not work properly if the serial port is enabled for ESPEasy (see <a href='/advanced'>advanced settings</a>)!"));
}
// if (!Settings.UseSerial)
// addHtmlError(F("The RFLink to MQTT bridge needs the serial console globally enabled!"));
// if (Settings.SerialLogLevel != 0)
// addHtmlError(F("Please set the global serial log level to 'none', otherwise debug output will be sent to the RFLink."));
// if (Settings.BaudRate != 57600)
// addHtmlError(F("RFLink by default uses a serial baud rate of 57600. Using a different rate will not work with the stock RFLink firmware!"));
}
addHtmlError(SaveSettings());
// MQTT Settings
strncpy(cfg.publish, WebServer.arg("plugin_197_publish").c_str(), sizeof(cfg.publish));
strncpy(cfg.subscribe, WebServer.arg("plugin_197_subscribe").c_str(), sizeof(cfg.subscribe));
cfg.sendRaw = isFormItemChecked(F("plugin_197_sendraw"));
cfg.sendJSON = isFormItemChecked(F("plugin_197_sendjson"));
cfg.includeSwitch = isFormItemChecked(F("plugin_197_includeswitch"));
SaveCustomTaskSettings(event->TaskIndex, (byte*)&cfg, sizeof(cfg));
success = true;
break;
}
case PLUGIN_INIT:
{
success = Plugin_197_setup_serial(event->TaskIndex);
break;
}
case PLUGIN_EXIT:
{
if (P197_serial_buf) {
free(P197_serial_buf);
P197_serial_buf = NULL;
P197_bytes_read = 0;
}
}
case PLUGIN_TEN_PER_SECOND:
{
if (MQTTclient_197 && !MQTTclient_197->loop()) { // Listen out for callbacks
Plugin_197_update_connect_status();
}
success = true;
break;
}
case PLUGIN_ONCE_A_SECOND:
{
// Make the initial connection to MQTT, if not connected yet
// During the plugin initialization, access to MQTT is not possible for some reason
// (crashes with exception 28), so we need to defer MQTT connection until here
if (!MQTTclient_197) {
Plugin_197_setup_mqtt(event->TaskIndex, ClientName);
}
// Here we check that the MQTT client is alive.
if (MQTTclient_197 && (!MQTTclient_197->connected() || MQTTclient_should_reconnect)) {
if (MQTTclient_should_reconnect) {
addLog(LOG_LEVEL_ERROR, F("RFmqtt : MQTT 1977 Intentional reconnect"));
}
MQTTclient_197->disconnect();
Plugin_197_update_connect_status();
delay(250);
Plugin_197_setup_serial(event->TaskIndex);
MQTTConnect_197(ClientName);
MQTTSubscribe_197();
}
success = true;
break;
}
case PLUGIN_READ:
{
// This routine does not output any data
success = false;
break;
}
case PLUGIN_RECV_MQTT:
{
// This is a private option only used by the MQTT 197 callback function
// Get the payload and check it out
LoadTaskSettings(event->TaskIndex);
RFLink_MQTT_config cfg;
LoadCustomTaskSettings(event->TaskIndex, (byte*)&cfg, sizeof(cfg));
String Topic = event->String1;
String Payload = event->String2;
String subscribe = cfg.subscribe;
subscribe.trim();
if (subscribe.length() > 0) { // empty subscription => nothing to do
// Now check if the incoming topic matches one of our subscriptions
parseSystemVariables(subscribe, false);
if (subscribe == Topic) {
success = Plugin_197_handle_from_mqtt(event->TaskIndex, Payload);
}
}
break;
}
case PLUGIN_FIFTY_PER_SECOND:
case PLUGIN_SERIAL_IN:
{
// Serial data comes in in bytes, not neccessarily one full line at a time, so we need
// to use a global buffer to store all received bytes until we encounter a newline.
// Once we see a newline (or the buffer is full), process all received bytes and reset
// the buffer
boolean readySubmit = false;
if (Serial.available() && !P197_serial_buf) {
addLog(LOG_LEVEL_ERROR, F("Serial received, but no buffer allocated!"));
break;
}
while (Serial.available()) {
// addLog(LOG_LEVEL_ERROR, F("Serial available, reading..."));
if (P197_bytes_read < P197_BUFFER_SIZE) {
P197_serial_buf[P197_bytes_read++] = Serial.read();
}
else
Serial.read(); // when the buffer is full, just read remaining input, but do not store...
if (P197_bytes_read >= P197_BUFFER_SIZE) {
addLog(LOG_LEVEL_ERROR, F("RFLinkMqtt: serial buffer full!"));
readySubmit = true;
P197_bytes_read--; // Leave space for the null terminator
}
if (P197_bytes_read > 0 && (P197_serial_buf[P197_bytes_read-1] == '\r' ||
P197_serial_buf[P197_bytes_read-1] == '\n'))
readySubmit = true;
if (readySubmit) {
// Strip trailing whitespace and the newlines / carriage return
while (P197_bytes_read > 0 && (P197_serial_buf[P197_bytes_read-1] == '\r' ||
P197_serial_buf[P197_bytes_read-1] == '\n' ||
P197_serial_buf[P197_bytes_read-1] == '\t' ||
P197_serial_buf[P197_bytes_read-1] == ' '
)) {
P197_bytes_read--;
}
// Add null terminator
P197_serial_buf[P197_bytes_read] = '\0';
// Ignore empty strings (e.g. \r\n)
if (P197_bytes_read > 0) {
String dbg = F("Serial message: ");
addLog(LOG_LEVEL_ERROR, dbg + (const char*)P197_serial_buf + ", bytes_read=" + P197_bytes_read);
Plugin_197_handle_from_rflink(event->TaskIndex, P197_serial_buf, P197_bytes_read);
}
P197_bytes_read = 0;
P197_serial_buf[0] = 0;
readySubmit = false;
}
}
success = true;
break;
}
case PLUGIN_WRITE:
{
String command = parseString(string, 1);
if (command == F("rflinksend")) {
success = Plugin_197_handle_from_mqtt(event->TaskIndex, string.substring(11));
}
if (command == F("rflinkreceive")) {
String rfcmd = string.substring(14);
success = Plugin_197_handle_from_rflink(event->TaskIndex, rfcmd.c_str(), rfcmd.length());
}
break;
}
}
return success;
}
boolean Plugin_197_setup_mqtt(int task, String ClientName) {
MQTTclient_197 = new PubSubClient(espclient_197);
MQTTclient_197->disconnect();
return MQTTConnect_197(ClientName) && MQTTSubscribe_197();
}
boolean Plugin_197_setup_serial(int task) {
if (!P197_serial_buf) {
P197_serial_buf = (char*)malloc(P197_BUFFER_SIZE);
P197_bytes_read = 0;
}
// /* => We use the default Serial
// Set up Serial (copied from the ser2net plugin P020)
LoadTaskSettings(task);
// if (Settings.UseSerial) {
if (ExtraTaskSettings.TaskDevicePluginConfigLong[1] != 0) {
Serial.end();
#if defined(ESP8266)
byte serialconfig = 0x10;
#endif
#if defined(ESP32)
uint32_t serialconfig = 0x8000010;
#endif
serialconfig += ExtraTaskSettings.TaskDevicePluginConfigLong[3];
serialconfig += (ExtraTaskSettings.TaskDevicePluginConfigLong[2] - 5) << 2;
if (ExtraTaskSettings.TaskDevicePluginConfigLong[4] == 2)
serialconfig += 0x20;
#if defined(ESP8266)
Serial.begin(ExtraTaskSettings.TaskDevicePluginConfigLong[1], (SerialConfig)serialconfig);
#endif
#if defined(ESP32)
Serial.begin(ExtraTaskSettings.TaskDevicePluginConfigLong[1], serialconfig);
#endif
String log = F("RFmqtt: Setting up serial with baudrate ");
addLog(LOG_LEVEL_DEBUG, log + ExtraTaskSettings.TaskDevicePluginConfigLong[1]);
}
return true;
}
boolean Plugin_197_handle_from_mqtt(int task, String message) {
String TaskName = getTaskDeviceName(task);
// Log the event
String log = F("RFmqtt : [");
log += TaskName;
log += F("] received for RFLink: ");
log += message;
addLog(LOG_LEVEL_INFO, log);
// Submit to the RFLink
if (message.length() > 0) {
Plugin_197_send_rflink(message);
}
if (Settings.UseRules) {
String RuleEvent = F("");
RuleEvent += TaskName;
RuleEvent += F("=");
RuleEvent += message;
rulesProcessing(RuleEvent);
}
return true;
}
boolean Plugin_197_handle_from_rflink(int task, const char *message, size_t len) {
RFLink_MQTT_config cfg;
LoadTaskSettings(task);
LoadCustomTaskSettings(task, (byte*)&cfg, sizeof(cfg));
String log = F("RFmqtt: received for MQTT: ");
addLog(LOG_LEVEL_DEBUG, log + message);
Plugin_197_send_mqtt(message, len, &cfg);
// We can also use the rules engine for local control!
if (Settings.UseRules && len > 0) {
String msg = message;
int NewLinePos = msg.indexOf(F("\r\n"));
if (NewLinePos > 0)
msg = msg.substring(0, NewLinePos);
if (msg.startsWith("20;")) {
msg = msg.substring(6);
}
String eventString = "!RFlink#" + msg; // strip 20;xx; from incoming message
rulesProcessing(eventString);
}
return len > 0;
}
boolean Plugin_197_send_rflink(String message) {
String log = F("Sending MQTT data to RFLink serial: ");
addLog(LOG_LEVEL_INFO, log + message);
Serial.println(message);
Serial.flush();
return true;
}
boolean Plugin_197_send_mqtt(const char *message, size_t len, struct RFLink_MQTT_config *cfg) {
if (len == 0 || !cfg || !MQTTclient_197 || !MQTTclient_197->connected())
return false;
boolean result = true;
String publish = cfg->publish;
String log = F("Handling RFLink data: ");
addLog(LOG_LEVEL_INFO, log + message);
if (!publish.endsWith("/")) publish += F("/");
if (cfg->sendRaw) {
String topic = parseTemplate(publish + F("raw"), 0);
log = F("Submitting raw RFLink data to MQTT topic '");
addLog(LOG_LEVEL_INFO, log + topic + F("': ") + message);
result = result && MQTTclient_197->publish(topic.c_str(), message);
}
if (cfg->sendJSON) {
result = result && Plugin_197_send_mqttjson(publish, message, len, cfg);
}
return result;
}
// Large Parts of the following RFLink -> JSON conversion function are taken from
// Phil Wilson's rflink-to-mqtt bridge (https://github.com/Phileep/rflink-to-mqtt.git)
float hextofloat(char* hexchars) {return float(strtol(hexchars,NULL,16));}
int hextoint(char* hexchars) {return strtol(hexchars,NULL,16);}
boolean Plugin_197_send_mqttjson(String topic, const char *message, size_t len, struct RFLink_MQTT_config *cfg) {
String Family = F("");
String Device = F("");
if (!cfg || !MQTTclient_197) {
return false;
}
DynamicJsonBuffer jsonBuffer;
JsonObject& root = jsonBuffer.createObject();
char msg[len + 1];
strncpy(msg, message, len + 1);
char * strtokIndx; // this is used by strtok() as an index
strtokIndx = strtok(msg, "\r\n"); // Consider only the first line received (i.e. replace \n by \0), if string contains a linebreak
strtokIndx = strtok(msg, ";"); // get the first part - the string
// Message needs to start with "20":
if (strtokIndx && strcmp(strtokIndx, "20") != 0 ) { // 20 means a message recieved from RFLINK - this is what we are interested in breaking up for use
// Not a 20; message => print debug message and exit
String log = F("Received serial command that is not a 20 code ");
addLog(LOG_LEVEL_INFO, log + message + F(", first part is: ") + strtokIndx);
return false;
}
// We have a 20; message => tokenize and convert to JSON
// IGNORE the next token (running packet counter) and extract first part
strtokIndx = strtok(NULL, ";");
strtokIndx = strtok(NULL, ";");
// Read each part of the message: command pairs contain a =, device name does not
while (strtokIndx != 0) {
// Check if message part contains a = or not
char* separator = strchr(strtokIndx, '=');
if (separator == 0) {
// Either the device family or some kind of status / debug / confirmation message from RFLink
// Ignore certain messages (i.e. confirmations of 10;... commands, debug output
if (strcmp(strtokIndx, "OK")==0 || strcmp(strtokIndx, "RFDEBUG=")==0 || strcmp(strtokIndx, "DEBUG")==0 || strcmp(strtokIndx, "Slave")==0 ||strcmp(strtokIndx, "PONG")==0 ) {
return false;
}
if (Family == "") {
root["Family"] = strtokIndx;
Family = String(strtokIndx);
} else {
String log = F("Encountered a second message part without =. Device family was already set to '");
log += Family;
log += F("', ignoring part '");
log += strtokIndx;
log += F("'.");
addLog(LOG_LEVEL_ERROR, log);
}
} else {
// Actually split the string in 2: replace '=' with 0
*separator = 0;
String NamePart = strtokIndx;
*separator = 0;
String NamePart = strtokIndx;
++separator;
if (NamePart == "ID") {
root[NamePart] = separator;
} else if (NamePart == "TEMP") { // test if it is TEMP, which is HEX
int tmpval = hextoint(separator);
float neg = 1.0;
tmpval = tmpval & 0x7FFF;
}
float tmpfloat = float(tmpval)*0.1; // divide by 10 - using multiply as it is faster than divide
root.set<float>(NamePart, tmpfloat*neg); // passed spurious test - add data to root
} /// end of TEMP block
else if (NamePart == "HUM") { // test if it is HUM, which is int
int tmpint;
if (Family == "DKW2012" ) { // digitech weather station - assume it is a hex humidity, not straight int
tmpint = hextoint(separator);
} else {
tmpint = atoi(separator); // end of setting tmpint to the value we want to use & test
}
if (tmpint > 0 and tmpint <= P197_HUMMAX) { //test if we are inside the maximum test point - if not, assume spurious data
root.set<int>(NamePart, tmpint); // passed the test - add the data to rot, otherwise it will not be added as spurious
}
} // end of HUM block
else if (NamePart == "RAIN" || NamePart == "WINSP" || NamePart == "WINGS") { // Handle all HEX data fields:
root.set<float>(NamePart, hextofloat(separator)*0.10 );
}
else {// check if an int, add as int, else add as text
char *ptr;
long val = strtol(separator, &ptr, 10);
if (*ptr != '\0') { // not an integer, further characters following
root[NamePart] = separator; // do normal string add
} else {
root.set<long>(NamePart, val); // do int add
}
}
}
// Find the next command in input string
strtokIndx = strtok(NULL, ";");
}
String MQTTTopic = parseTemplate(topic, 0);
if (!MQTTTopic.endsWith("/"))
MQTTTopic += F("/");
MQTTTopic += Family;
if (root.get<String>("ID").length() > 0) {
MQTTTopic.concat(F("/"));
MQTTTopic.concat(root.get<String>("ID"));
}
if (cfg->includeSwitch && root.get<String>("SWITCH").length() > 0) {
MQTTTopic.concat(F("/"));
MQTTTopic.concat(root.get<String>("SWITCH"));
}
// place the json data into variable 'json' for publishing over MQTT
String json;
root.printTo(json);
String log = F("Submitting JSON RFLink data to MQTT topic '");
addLog(LOG_LEVEL_INFO, log + MQTTTopic + F("': ") + json);
MQTTclient_197->publish(MQTTTopic.c_str(), json.c_str());
return true;
}
boolean MQTTSubscribe_197() {
// Subscribe to the topics requested by ALL calls to this plugin.
// We do this because if the connection to the broker is lost, we want to resubscribe for all instances.
RFLink_MQTT_config cfg;
if (!MQTTclient_197)
return false;
// Loop over all tasks looking for a 197 instance
for (byte y = 0; y < TASKS_MAX; y++) {
if (Settings.TaskDeviceNumber[y] == PLUGIN_ID_197) {
LoadCustomTaskSettings(y, (byte*)&cfg, sizeof(cfg));
String subscribeTo = cfg.subscribe;
if (subscribeTo.length() > 0) {
parseSystemVariables(subscribeTo, false);
if (MQTTclient_197->subscribe(subscribeTo.c_str())) {
String log = F("RFmqtt: [");
LoadTaskSettings(y);
log += getTaskDeviceName(y);
log += F("] subscribed to ");
log += subscribeTo;
addLog(LOG_LEVEL_INFO, log);
} else {
String log = F("RFmqtt: Error subscribing to ");
log += subscribeTo;
addLog(LOG_LEVEL_ERROR, log);
return false;
}
}
}
}
return true;
}
//
// handle MQTT messages
//
void mqttcallback_197(char* c_topic, byte* b_payload, unsigned int length)
{
// Incomng MQTT messages from the mqtt broker => to be passed on to the RFLink via serial
String topic = c_topic;
char cpayload[256];
strncpy(cpayload, (char*)b_payload, length);
cpayload[length] = 0;
String payload = cpayload; // convert byte to char string
payload.trim();
byte DeviceIndex = getDeviceIndex(PLUGIN_ID_197); // This is the device index of 197 modules -there should be one!
// We generate a temp event structure to pass to the plugins1111111111111111111111
struct EventStruct TempEvent;
TempEvent.String1 = topic; // This is the topic of the message
TempEvent.String2 = payload; // This is the payload
// Here we loop over all tasks and call each 197 plugin with function PLUGIN_IMPORT
for (byte y = 0; y < TASKS_MAX; y++) {
if (Settings.TaskDeviceNumber[y] == PLUGIN_ID_197) {
// if we have found a 197 device, let it handle the communication to the RFLink device!
TempEvent.TaskIndex = y;
LoadTaskSettings(TempEvent.TaskIndex);
TempEvent.BaseVarIndex = y * VARS_PER_TASK; // This is the index in Uservar where values for this task are stored
schedule_plugin_task_event_timer(DeviceIndex, PLUGIN_RECV_MQTT, &TempEvent);
}
}
}
//
// Make a new client connection to the mqtt broker.
// For some reason this seems to failduring the call in INIT- however it succeeds later during recovery
// It would be nice to understand this....
boolean MQTTConnect_197(String clientid)
{
boolean result = false;
int enabledMqttController = firstEnabledMQTTController();
if (enabledMqttController < 0) {
// No enabled MQTT controller
return false;
}
if (!MQTTclient_197) return false;
// Do nothing if already connected
if (MQTTclient_197->connected()) return true;
// define stuff for the client - this could also be done in the intial declaration of MQTTclient_197
if (!WiFiConnected(100)) {
Plugin_197_update_connect_status();
return false; // Not connected, so no use in wasting time to connect to a host.
}
ControllerSettingsStruct ControllerSettings;
LoadControllerSettings(enabledMqttController, ControllerSettings);
if (ControllerSettings.UseDNS) {
MQTTclient_197->setServer(ControllerSettings.getHost().c_str(), ControllerSettings.Port);
} else {
MQTTclient_197->setServer(ControllerSettings.getIP(), ControllerSettings.Port);
}
MQTTclient_197->setCallback(mqttcallback_197);
// Try three times for a connection
for (byte x = 1; x < 4; x++) {
String log = "";
if ((SecuritySettings.ControllerUser[enabledMqttController][0] != 0) && (SecuritySettings.ControllerPassword[enabledMqttController][0] != 0))
result = MQTTclient_197->connect(clientid.c_str(), SecuritySettings.ControllerUser[enabledMqttController], SecuritySettings.ControllerPassword[enabledMqttController]);
else
result = MQTTclient_197->connect(clientid.c_str());
if (result) {
log = F("RFmqtt : Connected to MQTT broker with Client ID=");
log += clientid;
addLog(LOG_LEVEL_INFO, log);
break; // end loop if succesfull
}
else
{
log = F("RFmqtt : Failed to connect to MQTT broker - attempt ");
log += x;
addLog(LOG_LEVEL_ERROR, log);
}
delay(500);
}
Plugin_197_update_connect_status();
return MQTTclient_197->connected();
}
void Plugin_197_update_connect_status() {
static bool MQTTclient_197_connected = false;
bool connected = false;
if (MQTTclient_197 != NULL) {
connected = MQTTclient_197->connected();
}
if (MQTTclient_197_connected != connected) {
MQTTclient_197_connected = !MQTTclient_197_connected;
if (Settings.UseRules) {
String event = connected ? F("RFLinkMQTT#Connected") : F("RFLinkMQTT#Disconnected");
rulesProcessing(event);
}
if (!connected) {
// workaround see: https://github.com/esp8266/Arduino/issues/4497#issuecomment-373023864
espclient_197 = WiFiClient();
addLog(LOG_LEVEL_ERROR, F("RFmqtt: MQTT 197 Connection lost"));
}
}
}
// #endif // USES_P197
//