Browse Source

Increasing MQTT keepalive to 300s to fit into the heartbeat interval (#715)

rfm69
Xose Pérez 6 years ago
parent
commit
53aa1d109e
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      code/espurna/config/general.h

+ 6
- 6
code/espurna/config/general.h View File

@ -594,7 +594,7 @@
#endif
#ifndef MQTT_KEEPALIVE
#define MQTT_KEEPALIVE 30 // MQTT keepalive value
#define MQTT_KEEPALIVE 300 // MQTT keepalive value
#endif
@ -1152,13 +1152,13 @@
#if IR_BUTTON_SET == 3
/*
+------+------+------+
| 1 | 2 | 3 |
| 1 | 2 | 3 |
+------+------+------+
| 4 | 5 | 6 |
| 4 | 5 | 6 |
+------+------+------+
| 7 | 8 | 9 |
| 7 | 8 | 9 |
+------+------+------+
| | 0 | |
| | 0 | |
+------+------+------+
*/
#define IR_BUTTON_COUNT 10
@ -1168,7 +1168,7 @@
{ 0xE0E020DF, IR_BUTTON_MODE_TOGGLE, 0 }, // Toggle Relay #0
{ 0xE0E0A05F, IR_BUTTON_MODE_TOGGLE, 1 }, // Toggle Relay #1
{ 0xE0E0609F, IR_BUTTON_MODE_TOGGLE, 2 }, // Toggle Relay #2
{ 0xE0E010EF, IR_BUTTON_MODE_TOGGLE, 3 }, // Toggle Relay #3
{ 0xE0E0906F, IR_BUTTON_MODE_TOGGLE, 4 }, // Toggle Relay #4
{ 0xE0E050AF, IR_BUTTON_MODE_TOGGLE, 5 }, // Toggle Relay #5


Loading…
Cancel
Save