mirror of
https://github.com/airgradienthq/arduino.git
synced 2025-07-30 17:07:16 +02:00
Merge pull request #239 from airgradienthq/hotfix/led-bar-show-pm-status
Fix: Correct LED bar show PM status
This commit is contained in:
@ -141,7 +141,7 @@ void StateMachine::co2handleLeds(void) {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
void StateMachine::pm25handleLeds(void) {
|
void StateMachine::pm25handleLeds(void) {
|
||||||
int pm25Value = value.pm25_1;
|
int pm25Value = ag->pms5003.compensate(value.pm25_1, value.Humidity);
|
||||||
if (pm25Value < 5) {
|
if (pm25Value < 5) {
|
||||||
/** G; 1 */
|
/** G; 1 */
|
||||||
ag->ledBar.setColor(RGB_COLOR_G, ag->ledBar.getNumberOfLeds() - 1);
|
ag->ledBar.setColor(RGB_COLOR_G, ag->ledBar.getNumberOfLeds() - 1);
|
||||||
|
Reference in New Issue
Block a user