document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <Wire.h>
  2. #include <LiquidCrystal_I2C.h>
  3. LiquidCrystal_I2C lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE);
  4. void setup()
  5. {
  6. Serial.begin(9600);
  7.  
  8. lcd.begin(16,2);
  9.  
  10.  
  11. for(int i = 0; i< 3; i++)
  12. {
  13. lcd.backlight();
  14. delay(250);
  15. lcd.noBacklight();
  16. delay(250);
  17. }
  18. lcd.backlight();
  19.  
  20.  
  21. lcd.setCursor(0,0);
  22. lcd.print("HELLO YOUTUBERS");
  23. delay(1000);
  24. lcd.setCursor(0,1);
  25. lcd.print("COMPUTERMUSEO");
  26. delay(8000);
  27.  
  28.  
  29. }
  30.  
  31.  
  32. void loop()
  33. {
  34. {
  35.  
  36.  
  37. }
  38.  
  39. }
');