u8g2
u8g2 copied to clipboard
SSD1596
Hello everyone. I have a display on a chip SSD1322 and Arduino DUE. I assembled everything according to the diagram.
Code:
#include <Arduino.h>
#include <U8g2lib.h>
#include <SPI.h>
#include <Wire.h>
void setup(void) {
u8g2.begin();
}
void loop(void) {
u8g2.firstPage();
do {
u8g2.setFont(u8g2_font_ncenB14_tr);
u8g2.drawStr(0,24,"Hello World!");
} while ( u8g2.nextPage() );
}
Nothing is displayed on the display. What could be the error?
Regars, Mark
Which constructor did you use?