#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
Adafruit_SSD1306 OLED(-1);
void setup() {
OLED.begin(SSD1306_SWITCHCAPVCC,0x3C);
}
void loop(){
OLED.clearDisplay();
OLED.setTextColor(WHITE,BLACK);
OLED.setCursor(5,0); OLED.setTextSize(2);
OLED.println("IOT KLS");
OLED.display();
OLED.setTextSize(1);OLED.setCursor(6,15);
OLED.println("Mr.Parin");delay(500);
OLED.display();delay(500);
}