Skip to content

Commit

Permalink
Merge pull request #15 from mitchellhenke/patch-1
Browse files Browse the repository at this point in the history
Print line in test example
  • Loading branch information
ladyada authored Apr 24, 2020
2 parents dbfd093 + 014cdab commit 02c8621
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 02c8621

Please sign in to comment.