Hello everyone,
I am using Digole color LCD 168x128 1.8" and need to communicate via I2C mode with Teensy 3.2. I have also connected SDA with A4 and SCL with A5 on Teensy. When I try to upload the program at this time, it upload successfully, but I can't see any effect on the LCD. what should I do?
Should I did any mistake? Below I attached short example code and I have already added library also. Please give me your suggestion.
Example code:
#include <DigoleSerial.h>
#include <Wire.h>
DigoleSerialDisp mydisp(&Wire,'\x27');
void setup() {
mydisp.begin();
mydisp.clearScreen();
mydisp.setI2CAddress(0x27);
mydisp.print('' Hello '');
}
void loop() {
}