#include <Adafruit_GFX.h>
#include <Adafruit_SH1107.h>
#include <Wire.h>
#define SCREEN_WIDTH 128
#define SCREEN_HEIGHT 64
Adafruit_SH1107 display(SCREEN_WIDTH, SCREEN_HEIGHT);
void setup() {
display.begin();
display.display(); // Clear the screen
display.setTextColor(SSD1306_WHITE); // Set text color to white
display.setTextSize(1); // 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
}