From de4a72b4d812e1662de45a8f2f47b8b3eb5ea3c0 Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Thu, 7 Nov 2024 18:04:39 -0500 Subject: SensorStation: rephrase log message --- SensorStation/SensorStation.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3