From 65b0c13a861125e1fffdf90cb235e6fc13a0116d Mon Sep 17 00:00:00 2001 From: sam Date: Wed, 11 Oct 2023 14:34:14 +0200 Subject: [PATCH] changed a / to a \ --- arduino/sensor combo/combi/combi.ino | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/arduino/sensor combo/combi/combi.ino b/arduino/sensor combo/combi/combi.ino index 5090188..858f527 100644 --- a/arduino/sensor combo/combi/combi.ino +++ b/arduino/sensor combo/combi/combi.ino @@ -57,10 +57,9 @@ void loop() { float Lichtsterkte = analogRead(LDR); //hier worden alle variabelen in de serial monitor uitgespuugt, en websites kunnen ook de Serial.print lezen. - String JsArray = String("[") + Temparatuur + "," + Luchtvochtigheid + "," + Lichtsterkte +"]/n"; + String JsArray = String("[") + Temparatuur + "," + Luchtvochtigheid + "," + Lichtsterkte +"]\n"; Serial.print(JsArray); -