Skip to content

Commit

Permalink
Update FinedustMonitorWithGPS.ino
Browse files Browse the repository at this point in the history
  • Loading branch information
happybono authored Dec 29, 2019
1 parent aabbbe9 commit d6d25d7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions FinedustMonitorWithGPS/FinedustMonitorWithGPS.ino
Original file line number Diff line number Diff line change
Expand Up @@ -153,15 +153,15 @@ void loop() {
}

else if (pm25i == 3) {
status = "Moderate (3) : Air quality is acceptable; however, for some pollutants there may be a moderate health concern for a very small number of people who are unusually sensitive to air pollution.";
status = "Moderate (3) : Air quality is acceptable. however, for some pollutants there may be a moderate health concern for a very small number of people who are unusually sensitive to air pollution.";
}

else if (pm25i == 4) {
status = "Satisfactory (4) : Members of sensitive groups may experience health effects, Other people should limit spending time outdoors, especially when they experience symptoms such as cough or sore throat.";
}

else if (pm25i == 5) {
status = "Bad (5) : Everyone may begin to experience health effects; members of sensitive groups may experience more serious health effects. People at risk should avoid to go outside. Not recommended for outdoor activities.";
status = "Bad (5) : Everyone may begin to experience health effects, members of sensitive groups may experience more serious health effects. People at risk should avoid to go outside. Not recommended for outdoor activities.";
}

else if (pm25i == 6) {
Expand All @@ -181,15 +181,15 @@ void loop() {
}

else if (pm10i == 3) {
status = "Moderate (3) : Air quality is acceptable; however, for some pollutants there may be a moderate health concern for a very small number of people who are unusually sensitive to air pollution.";
status = "Moderate (3) : Air quality is acceptable. however, for some pollutants there may be a moderate health concern for a very small number of people who are unusually sensitive to air pollution.";
}

else if (pm10i == 4) {
status = "Satisfactory (4) : Members of sensitive groups may experience health effects, Other people should limit spending time outdoors, especially when they experience symptoms such as cough or sore throat.";
}

else if (pm10i == 5) {
status = "Bad (5) : Everyone may begin to experience health effects; members of sensitive groups may experience more serious health effects. People at risk should avoid to go outside. Not recommended for outdoor activities.";
status = "Bad (5) : Everyone may begin to experience health effects, members of sensitive groups may experience more serious health effects. People at risk should avoid to go outside. Not recommended for outdoor activities.";
}

else if (pm10i == 6) {
Expand Down

0 comments on commit d6d25d7

Please sign in to comment.