u8g2 icon indicating copy to clipboard operation
u8g2 copied to clipboard

SSD1596

Open Mark211459 opened this issue 1 year ago • 1 comments

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

Mark211459 avatar Mar 22 '25 15:03 Mark211459

Which constructor did you use?

olikraus avatar Mar 22 '25 22:03 olikraus