Took 38 minutes
This commit is contained in:
2023-02-01 14:44:42 +01:00
parent 00691557cc
commit 59bb0437e1
6 changed files with 25 additions and 11 deletions

View File

@ -5,7 +5,7 @@
#include "HX711.h"
// Define the size of the JSON buffer
#define JSON_BUFFER_SIZE 256
// #define JSON_BUFFER_SIZE 256
// Create a JSON object for incoming messages
StaticJsonDocument<JSON_BUFFER_SIZE> incomingJson;
@ -97,6 +97,7 @@ void loop() {
// Send the outgoing JSON message
serializeJson(outgoingJson, Serial);
Serial.println();
}
}
}