Update AHT10_Any_MCU_Serial.ino

This commit is contained in:
enjoyneering 2020-03-20 10:06:09 -04:00 committed by GitHub
parent f203415e88
commit 12ed9ae32e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,10 +44,10 @@ void setup()
while (myAHT10.begin() != true)
{
Serial.println(F("AHT10/AHT15 sensor defective or not connected")); //(F()) save string to flash & keeps dynamic memory free
Serial.println(F("AHT10 not connected or fail to load calibration coefficient")); //(F()) save string to flash & keeps dynamic memory free
delay(5000);
}
Serial.println(F("AHT10/AHT15 is active"));
Serial.println(F("AHT10 OK"));
//Wire.setClock(400000); //experimental I2C speed! 400KHz, default 100KHz
}