#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
Adafruit_SSD1306 oled(128,64,&Wire,-1);
void setup() {
// put your setup code here, to run once:
oled.begin(SSD1306_SWITCHCAPVCC,0x3C);
}
void loop() {
// put your main code here, to run repeatedly:
oled.clearDisplay();
oled.setTextSize(1);
oled.setTextColor(WHITE);
oled.setCursor(17,26);
oled.println("Abdul");
oled.drawRoundRect(0,0,63,63,5,WHITE);
oled.drawCircle(100,32,25,WHITE);
oled.display();
}