#include <Arduino.h>
#include <U8g2lib.h>
// #include <U8glib.h>
#define LED_SCL 8;
#define LED_SDA 9;
U8G2_SSD1306_128X64_NONAME_F_HW_I2C u8g2(U8G2_R0,U8X8_PIN_NONE,SCL,SDA);
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32-C3!");
u8g2.setBusClock(800000);
u8g2.begin();
u8g2.enableUTF8Print();
}
void loop() {
// put your main code here, to run repeatedly:
u8g2.clearBuffer();
u8g2.drawStr(0,0,"Hello World!");
delay(10); // this speeds up the simulation
}