summaryrefslogtreecommitdiffstats
path: root/SensorStation
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2024-11-07 18:04:39 -0500
committerSam Anthony <sam@samanthony.xyz>2024-11-07 18:04:39 -0500
commitde4a72b4d812e1662de45a8f2f47b8b3eb5ea3c0 (patch)
tree6e5b658ce250d414bbecebc053d4106e76922bc9 /SensorStation
parent7275544c44dd76dcf2b44b39660f43ee26e68bed (diff)
downloadsoen422-de4a72b4d812e1662de45a8f2f47b8b3eb5ea3c0.zip
SensorStation: rephrase log message
Diffstat (limited to 'SensorStation')
-rw-r--r--SensorStation/SensorStation.ino2
1 files changed, 1 insertions, 1 deletions
diff --git a/SensorStation/SensorStation.ino b/SensorStation/SensorStation.ino
index 6fc5f5b..8064e71 100644
--- a/SensorStation/SensorStation.ino
+++ b/SensorStation/SensorStation.ino
@@ -65,7 +65,7 @@ send(float humidity) {
http.begin(client, url);
int responseCode = http.POST("");
http.end();
- Serial.printf("HTTP response: %d\n", responseCode);
+ Serial.printf("HTTP response code: %d\n", responseCode);
if (responseCode != HTTP_CODE_OK)
return 1;
return 0;