WebSocketClientSocketIO.ino:113:25: ArduinoJson, you must set ARDUINOJSON_USE_LONG_LONG error

This commit is contained in:
Links
2020-07-11 18:07:16 +02:00
parent 3f1cedb21c
commit f244741caa

View File

@ -110,7 +110,7 @@ void loop() {
// add payload (parameters) for the event
JsonObject param1 = array.createNestedObject();
param1["now"] = now;
param1["now"] = (uint32_t) now;
// JSON to String (serializion)
String output;