#include <U8g2lib.h> // Include U8g2 library

// U8g2 Constructor for SSD1306 OLED display (128x64 pixels)
U8G2_SSD1306_128X64_NONAME_F_SW_I2C u8g2(U8G2_R0, /* clock=*/ SCL, /* data=*/ SDA, /* reset=*/ U8X8_PIN_NONE);

void setup() {
  u8g2.begin(); // Initialize U8g2 library
}

void loop() {
  u8g2.clearBuffer(); // Clear the display buffer
  u8g2.setFont(u8g2_font_helvR14_tf); // Set font to use
  u8g2.drawStr(0, 20, "Hello freelance"); // Draw text at position (0, 20)
  u8g2.drawStr(0, 50, "from U8g2lib"); // Draw text at position (0, 20)

  u8g2.sendBuffer(); // Send the display buffer to the OLED display
  delay(1000); // Delay for 1 second
}
uno:A5.2
uno:A4.2
uno:AREF
uno:GND.1
uno:13
uno:12
uno:11
uno:10
uno:9
uno:8
uno:7
uno:6
uno:5
uno:4
uno:3
uno:2
uno:1
uno:0
uno:IOREF
uno:RESET
uno:3.3V
uno:5V
uno:GND.2
uno:GND.3
uno:VIN
uno:A0
uno:A1
uno:A2
uno:A3
uno:A4
uno:A5
oled1:GND
oled1:VCC
oled1:SCL
oled1:SDA