Skip to content
This repository has been archived by the owner on May 31, 2023. It is now read-only.

Commit

Permalink
json buffer size doubled
Browse files Browse the repository at this point in the history
  • Loading branch information
mcer12 committed Nov 16, 2019
1 parent 68a6394 commit 50e89d0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Firmware/Hugo_BasicUrlTrigger/Hugo_BasicUrlTrigger.ino
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@

#define OTA_NAME "Hugo_" // Last 6 MAC address characters will be appended at the end of the OTA name, "Hugo_XXXXXX" by default
#define AP_NAME "Hugo_" // Last 6 MAC address characters will be appended at the end of the AP name, "Hugo_XXXXXX" by default
#define FW_VERSION "1.4"
#define FW_VERSION "1.4.1"
#define button1_pin 14
#define button2_pin 4
#define button3_pin 12
Expand Down Expand Up @@ -84,7 +84,7 @@ byte mac[6];
Ticker ticker;
ESP8266WebServer server(80);

DynamicJsonDocument json(1024); // config buffer
DynamicJsonDocument json(2048); // config buffer

void setup() {
Serial.begin(115200);
Expand Down
4 changes: 2 additions & 2 deletions Firmware/Hugo_MqttTrigger/Hugo_MqttTrigger.ino
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

#define OTA_NAME "Hugo_" // Last 6 MAC address characters will be appended at the end of the OTA name, "Hugo_XXXXXX" by default
#define AP_NAME "Hugo_" // Last 6 MAC address characters will be appended at the end of the AP name, "Hugo_XXXXXX" by default
#define FW_VERSION "1.4"
#define FW_VERSION "1.4.1"
#define button1_pin 14
#define button2_pin 4
#define button3_pin 12
Expand Down Expand Up @@ -97,7 +97,7 @@ ESP8266WebServer server(80);
WiFiClient espClient;
PubSubClient client(espClient);

DynamicJsonDocument json(1024); // config buffer
DynamicJsonDocument json(2048); // config buffer

void setup() {
Serial.begin(115200);
Expand Down
4 changes: 2 additions & 2 deletions Firmware/Hugo_diyHueTapSwitch/Hugo_diyHueTapSwitch.ino
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@

#define OTA_NAME "Hugo_" // Last 6 MAC address characters will be appended at the end of the OTA name, "Hugo_XXXXXX" by default
#define AP_NAME "Hugo_" // Last 6 MAC address characters will be appended at the end of the AP name, "Hugo_XXXXXX" by default
#define FW_VERSION "1.3.1"
#define FW_VERSION "1.3.2"
#define button1_pin 14
#define button2_pin 4
#define button3_pin 12
Expand Down Expand Up @@ -90,7 +90,7 @@ byte mac[6];
Ticker ticker;
ESP8266WebServer server(80);

DynamicJsonDocument json(1024); // config buffer
DynamicJsonDocument json(2048); // config buffer

void setup() {
Serial.begin(115200);
Expand Down

0 comments on commit 50e89d0

Please sign in to comment.