Módulo display LCD 16×2 I2C (Ligação Easy) para Arduino Keyestudio
Interface: Easy plug
I2C Address: 0x27
Back lit (Blue with white char color)
Supply voltage: 5V
Adjustable contrast
Size: 98*36mm
Weight: 30g
REF: KS0137
O módulo EASY plug 1602 I2C é uma tela LCD de 16 caracteres por 2 linhas com fundo azul e luz de fundo branca. Este LCD está pronto para utilização imediata porque é compatível com a Arduino Liquid Crystal Library.
5,43€ IVA INCL.
Interface: Easy plug
I2C Address: 0x27
Back lit (Blue with white char color)
Supply voltage: 5V
Adjustable contrast
Size: 98*36mm
Weight: 30g
Marca |
---|
//YWROBOT //Compatible with the Arduino IDE 1.0 //Library version:1.1 #include // Place file “Wire.h” under the directory “library” of Arduino #include // Place file “LiquidCrystal_I2C.h” under the directory “library” of Arduino LiquidCrystal_I2C lcd(0x27,16,2); // set the LCD address to 0x27 for a 16 chars and 2 line display void setup() { lcd.init(); // initialize the lcd lcd.init(); // Print a message to the LCD. lcd.backlight(); lcd.setCursor(2,0); lcd.print("Hello, world!"); lcd.setCursor(2,1); lcd.print("Hello, keyes!"); } void loop() { }
Não há comentários ainda.