#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
#include <Wire.h>
#define SCREEN_WIDTH 128
#define SCREEN_HEIGHT 64
Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, -1);
void setup() {
display.begin(SSD1306_PAGEADDR, &Wire);
display.display(); // Clear the screen
display.setTextColor(SSD1306_WHITE); // Set text color to white
display.setTextSize(2); // Set text size
display.setCursor(0, 0); // Set the cursor position
display.println("U8X8 directly write,");
display.println("part of u8g2");
display.println("IS text library,");
display.println("arvind patil India");
}
void loop() {
// You can add more code here if needed
}