1602 LCD Display || 16x2 Display with Arduino || Setup Tutorial


Circuit diagram for this project:

Arduino sketch for this project:
=================================================================
#include <LiquidCrystal_I2C.h>

LiquidCrystal_I2C lcd(0x27,16,2);  

void setup() {
  lcd.init();
  lcd.clear();         
  lcd.backlight();     
  
 
  lcd.setCursor(2,0);   
  lcd.print("SUBSCRIBE To:");
  
  lcd.setCursor(2,1);  
  lcd.print("ChasingCurrent");
}

void loop() {
}

=================================================================

No comments

   Arduino Code: ============================================================== #include <Stepper.h> // Define the pins used by the st...

Powered by Blogger.