Skip to content
This repository has been archived by the owner on Oct 13, 2021. It is now read-only.

Commit

Permalink
Update HTU21D_ESP8266_Humidex_Windchill.ino
Browse files Browse the repository at this point in the history
  • Loading branch information
enjoyneering committed Jul 17, 2018
1 parent 6581470 commit 951742c
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -82,11 +82,11 @@ void setup()
/* LCD connection check */
while (lcd.begin(LCD_COLUMNS, LCD_ROWS, LCD_5x8DOTS) != true) //20x4 display, LCD_5x8DOTS pixels size, SDA - D2, SCL - D1
{
Serial.println(F("PCF8574 is not connected or lcd pins declaration is wrong. Only pins numbers: 4,5,6,16,11,12,13,14 are legal.")); //(F()) saves string to flash & keeps dynamic memory
Serial.println(F("PCF8574 is not connected or lcd pins declaration is wrong. Only pins numbers: 4,5,6,16,11,12,13,14 are legal."));
delay(5000);
}

lcd.print(F("PCF8574 is OK"));
lcd.print(F("PCF8574 is OK")); //(F()) saves string to flash & keeps dynamic memory free
delay(1000);

lcd.clear();
Expand Down

0 comments on commit 951742c

Please sign in to comment.