From 014cdab530874bd46255f6c072e31e240ca2437c Mon Sep 17 00:00:00 2001 From: Mitchell Henke Date: Fri, 24 Apr 2020 11:00:19 -0500 Subject: [PATCH] Print line in test example --- examples/CCS811_test/CCS811_test.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/CCS811_test/CCS811_test.ino b/examples/CCS811_test/CCS811_test.ino index 930ad77..12b2535 100644 --- a/examples/CCS811_test/CCS811_test.ino +++ b/examples/CCS811_test/CCS811_test.ino @@ -40,7 +40,7 @@ void loop() { Serial.print("CO2: "); Serial.print(ccs.geteCO2()); Serial.print("ppm, TVOC: "); - Serial.print(ccs.getTVOC()); + Serial.println(ccs.getTVOC()); } else{ Serial.println("ERROR!"); @@ -48,4 +48,4 @@ void loop() { } } delay(500); -} \ No newline at end of file +}