#include "SSD1306Wire.h" // legacy include: `#include "SSD1306.h"`
SSD1306Wire display(0x3c,22, 23);// address, SDA, SCL
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
//Serial.println("Hello, ESP32!");
display.init();
display.flipScreenVertically();
display.display();
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}