#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
Adafruit_SSD1306 oled(128, 64, &Wire, -1);
void setup()
{ oled.begin (SSD1306_SWITCHCAPVCC, 0x3C);
oled.clearDisplay();
oled.setCursor(0,10);
oled.setTextSize(2);
oled.setTextColor(WHITE,BLACK);
oled.println("Tararat");
oled.setCursor(48, 40);
oled.println("-25-");
oled.display();
}
void loop()
{
}