mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
AQICalculator is off by 1 (#1331)
Co-authored-by: Igor Katkov <ikatkov@atlassian.com>
This commit is contained in:
parent
bd061ac2ee
commit
9cd21bb5a0
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]) {
|
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]) {
|
if (value >= array[i][0] && value <= array[i][1]) {
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue