#include "U8g2lib.h"
#define SPI_CS 5
#define SPI_DC 17
U8G2_SSD1322_NHD_256X64_F_4W_HW_SPI u8g2(U8G2_R0, SPI_CS, SPI_DC);
void setup() {
// put your setup code here, to run once:
u8g2.begin();
Serial.begin(115200);
while (!Serial) {}
Serial.println("Hello, ESP32!");
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}