Update AHT10_AVR_LCD_i2c.ino

This commit is contained in:
enjoyneering 2020-03-20 10:19:27 -04:00 committed by GitHub
parent 7d8392c5ab
commit 2be6addb71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,7 +63,8 @@ void setup()
/* AHT10 connection check */
while (myAHT10.begin() != true)
{
lcd.print(F("AHT10 not connected or fail to load calibration coefficient")); //(F()) saves string to flash & keeps dynamic memory free
lcd.print(F("AHT10 Error")); //(F()) saves string to flash & keeps dynamic memory free
Serial.println(F("AHT10 not connected or fail to load calibration coefficient"));
delay(5000);
}