We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
в разделе src/dev/bmp280 в файле tasks.h необходимо заменить код
src/dev/bmp280
tasks.h
if (bmx280.isBME280()) { BMP280_AirHumRM.add(BMP280_Hum); AirPress = BMP280_AirHumRM.getAverage(10); }
присвоение BMP280_AirHumRM.getAverage(10) переменной AirPress (давление)
BMP280_AirHumRM.getAverage(10)
AirPress
на
if (bmx280.isBME280()) { BMP280_AirHumRM.add(BMP280_Hum); AirHum = BMP280_AirHumRM.getAverage(10); }
присвоение BMP280_AirHumRM.getAverage(10) переменной AirHum (влажность)
AirHum
The text was updated successfully, but these errors were encountered:
No branches or pull requests
в разделе
src/dev/bmp280
в файлеtasks.h
необходимо заменить кодприсвоение
BMP280_AirHumRM.getAverage(10)
переменнойAirPress
(давление)на
присвоение
BMP280_AirHumRM.getAverage(10)
переменнойAirHum
(влажность)The text was updated successfully, but these errors were encountered: