Skip to content

Commit

Permalink
Update ESP32_bme680_CC_demo_03.ino
Browse files Browse the repository at this point in the history
  • Loading branch information
G6EJD authored Jun 4, 2019
1 parent 18d0c4b commit d559c19
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion ESP32_bme680_CC_demo_03.ino
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ void GetGasReference() {
String CalculateIAQ(int score) {
String IAQ_text = "air quality is ";
score = (100 - score) * 5;
score = 175;
if (score >= 301) IAQ_text += "Hazardous";
else if (score >= 201 && score <= 300 ) IAQ_text += "Very Unhealthy";
else if (score >= 176 && score <= 200 ) IAQ_text += "Unhealthy";
Expand Down

0 comments on commit d559c19

Please sign in to comment.