Hi,
I am new with this ucontroller (just one on a wii drone).
I try to connect a LCD03 16 with i2c on a Leonardo. To start I just want to clear screen. The power come fron Leonardo board (5v) and I plug SCL and SDA with 2 pull up resistors (2k).
Here is the code (simple :-)):
Code:
#include <Wire.h>
#define adresse 0xC6
Void setup() {
Wire.begin();
Wire.beginTransmition(adresse);
Wire.write((byte)(0x0C)); //clear screen
Wire.write((byte)(0x13)); //turn on backlight
Wire.endTransmission;
}
void loop () {
}
Thaks a lot
Max