#include <Wire.h>
#include <SPI.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
Adafruit_SSD1306 OLED(-1);
const unsigned char logo [] PROGMEM = {
0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x03, 0x80, 0x00,
0x00, 0x00, 0x1f, 0xc0, 0x00,
0x00, 0x00, 0x3f, 0xf0, 0x00,
0x00, 0x01, 0xf0, 0x3e, 0x00,
0x00, 0x07, 0xe0, 0x0f, 0x00,
0x00, 0x0e, 0x00, 0x03, 0x80,
0x00, 0x0c, 0xfc, 0x01, 0xc0,
0x00, 0x1b, 0xff, 0x00, 0xe0,
0x00, 0x1f, 0x87, 0x80, 0x60,
0x00, 0x1e, 0x01, 0xc0, 0x60,
0x01, 0xfc, 0x00, 0xfe, 0xe0,
0x07, 0xfc, 0x00, 0x7f, 0xc0,
0x0f, 0xf0, 0x00, 0x07, 0x80,
0x0f, 0x00, 0x00, 0x01, 0xc0,
0x1c, 0x00, 0x00, 0x00, 0xe0,
0x1c, 0x00, 0x00, 0x00, 0xe0,
0x1c, 0x00, 0x00, 0x00, 0x60,
0x1c, 0x00, 0x00, 0x00, 0x60,
0x1c, 0x00, 0x00, 0x00, 0x60,
0x1c, 0x00, 0x00, 0x00, 0xe0,
0x0e, 0x00, 0x00, 0x01, 0xc0,
0x07, 0x8c, 0x18, 0x03, 0xc0,
0x03, 0xfe, 0x30, 0xff, 0x80,
0x00, 0xf8, 0x73, 0xfe, 0x00,
0x00, 0x00, 0x63, 0x80, 0x00,
0x00, 0x01, 0xe0, 0x00, 0x00,
0x00, 0x01, 0xf8, 0x00, 0x00,
0x00, 0x00, 0x38, 0x00, 0x00,
0x00, 0x00, 0x70, 0x00, 0x00,
0x00, 0x00, 0xe0, 0x00, 0x00,
0x00, 0x01, 0xc0, 0x00, 0x00,
0x00, 0x03, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00
};
void setup() {
OLED.begin(SSD1306_SWITCHCAPVCC,0x3C); // initialize with the I2C addr 0x3C (for the 128x64)
OLED.clearDisplay();
OLED.drawBitmap(20,10,logo,40,40,1); //20,10 is x,y coordinates and 40,40 is image size
OLED.display();
}
void loop(){
delay(250);
}