mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
AQICalculator is off by 1 (#1331)
Co-authored-by: Igor Katkov <ikatkov@atlassian.com>
This commit is contained in:
parent
e50644edee
commit
7b157aeff1
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ class AQICalculator : public AbstractAQICalculator {
|
|||
}
|
||||
|
||||
int get_grid_index_(uint16_t value, int array[AMOUNT_OF_LEVELS][2]) {
|
||||
for (int i = 0; i < AMOUNT_OF_LEVELS - 1; i++) {
|
||||
for (int i = 0; i < AMOUNT_OF_LEVELS; i++) {
|
||||
if (value >= array[i][0] && value <= array[i][1]) {
|
||||
return i;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue