Пытаюсь создать ПБ из тестового примера для aht20+bmp280 столкнулся с проблемой инициализации шины I2C, что не правильно сделал?
2.flp
[spoiler]
2.png
[/spoiler][spoiler]
3.png
[/spoiler]
сам пример
[scroll]#include <Wire.h>
#include <AHT20.h>
AHT20 aht20;
void setup()
{
Serial.begin(115200);
Serial.println("Humidity AHT20 examples");
Wire.begin(); //Join I2C bus
//Check if the AHT20 will acknowledge
if (aht20.begin() == false)
{
Serial.println("AHT20 not detected. Please check wiring. Freezing.");
while (1);
}
Serial.println("AHT20 acknowledged.");
}
void loop()
{
//If a new measurement is available
if (aht20.available() == true)
{
//Get the new temperature and humidity value
float temperature = aht20.getTemperature();
float humidity = aht20.getHumidity();
//Print the results
Serial.print("Temperature: ");
Serial.print(temperature, 2);
Serial.print(" C\t");
Serial.print("Humidity: ");
Serial.print(humidity, 2);
Serial.print("% RH");
Serial.println();
}
//The AHT20 can respond with a reading every ~50ms. However, increased read time can cause the IC to heat around 1.0C above ambient.
//The datasheet recommends reading every 2 seconds.
delay(2000);
}[/scroll]
У вас нет необходимых прав для просмотра вложений в этом сообщении.