
IIC I2C Seri LCD Modül
Satış Fiyatı
52,44 TL
(Kdv Dahil)
Kategori
Stok Kodu
IIC I2C
Fiyat
1,15 USD + KDV
Havale
51,39 TL
(%2,00 havale indirimi)
*5,36 TL den başlayan taksitlerle!!
Arduino IIC I2C Seri LCD Modül
16x2 20x4 gibi karakter lcd modülleri IIC haberleşme protokolü üzerinden 2 pin ile kullanabilmek için geliştirilmiştir. Pin sayısı az olan mcular ile lcd kullanmak sorun oluşturmaktadır. I2c protu ile haberleşilen bu modül kullanıldığında mcu pinlerini farklı işler için kullanabilme imkanı olur.
I2C IIC Serial Interface Board Module LCD1602 Address Changeable for Arduino New. This is another great IIC/I2C/TWI/SPI Serial Interface. As the pin resources for Arduino controller is limited, your project may be not able to use normal LCD shield after connected with a certain quantity of sensors or SD card. However, with this I2C interface module, you will be able to realize data display via only 2 wires. If you already has I2C devices in your project, this LCD module actually cost no more resources at all. It is fantastic for Arduino based project.
Interface: I2C
I2C Address: 0x27
Pin Definition : GND、VCC、SDA、SCL
Supply voltage: 5V
The backlight and contrast is adjusted by potentiometer
Backlight Adjust : Jumper
I2C Address: 0X20~0X27 (the original address is 0X20,you can change it yourself)
Compatible for 1602 LCD,1604 LCD, 2004 LCD
Pcb Size : 60mm×99mm
Weight : Approx 8g
Paket içeriği :
1 Adet IICI2C Seri LCD Modül
Bu ürüne ilk yorumu siz yapın!
Arduino Sample Code
// I2C Scanner
// Written by Nick Gammon
// Date: 20th April 2011
#include
void setup() {
Serial.begin (115200);
// Leonardo: wait for serial port to connect
while (!Serial)
{
}
Serial.println ();
Serial.println ("I2C scanner. Scanning ...");
byte count = 0;
Wire.begin();
for (byte i = 8; i < 120; i++)
{
Wire.beginTransmission (i);
if (Wire.endTransmission () == 0)
{
Serial.print ("Found address: ");
Serial.print (i, DEC);
Serial.print (" (0x");
Serial.print (i, HEX);
Serial.println (")");
count++;
delay (1); // maybe unneeded?
} // end of good response
} // end of for loop
Serial.println ("Done.");
Serial.print ("Found ");
Serial.print (count, DEC);
Serial.println (" device(s).");
} // end of setup
void loop() {}