Skip to content

Commit

Permalink
Print line in test example
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellhenke authored Apr 24, 2020
1 parent dbfd093 commit 014cdab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/CCS811_test/CCS811_test.ino
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ 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!");
while(1);
}
}
delay(500);
}
}

0 comments on commit 014cdab

Please sign in to comment.