#include <Wire.h>
#include <Adafruit_SSD1306.h>
#include <Adafruit_GFX.h>
#include <Adafruit_NeoPixel.h>
Adafruit_SSD1306 display( 128, 64); // 128 pixels width, 64 pixels height
const unsigned char indobotlogo_indobot [] PROGMEM = {
0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x0f, 0xff, 0xff, 0xc0, 0x00, 0x03, 0xff, 0xff,
0x80, 0x00, 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x7f, 0xfc, 0x00, 0x18, 0x00, 0x3f, 0xf8, 0x00,
0x08, 0x00, 0x1f, 0xf0, 0x00, 0x08, 0x00, 0x0f, 0xf0, 0x00, 0x08, 0x00, 0x0f, 0xe0, 0x00, 0x18,
0x00, 0x07, 0xc0, 0x01, 0xbd, 0x80, 0x03, 0xc0, 0x07, 0xbd, 0xf0, 0x03, 0x80, 0x1f, 0xdb, 0xf8,
0x01, 0x80, 0x3f, 0xe3, 0xfc, 0x01, 0x80, 0x7f, 0xe7, 0xfe, 0x01, 0x80, 0xff, 0xff, 0xff, 0x00,
0x00, 0xf9, 0xff, 0x9f, 0x00, 0x00, 0x78, 0xff, 0x1e, 0x00, 0x00, 0x79, 0xff, 0x9e, 0x00, 0x00,
0x7f, 0xff, 0xfe, 0x00, 0x00, 0xbf, 0xff, 0xfd, 0x00, 0x00, 0xbf, 0xff, 0xfd, 0x00, 0x00, 0xdf,
0xff, 0xfb, 0x00, 0x00, 0xdf, 0xff, 0xfb, 0x00, 0x80, 0xe0, 0x00, 0x07, 0x00, 0x80, 0x7f, 0xc3,
0xfe, 0x01, 0x80, 0x7f, 0xc3, 0xfe, 0x01, 0x80, 0x3f, 0xc3, 0xfc, 0x01, 0xc0, 0x3f, 0xdb, 0xfc,
0x03, 0xc0, 0x1f, 0xdb, 0xf8, 0x03, 0xe0, 0x0f, 0xc3, 0xf0, 0x07, 0xf0, 0x03, 0xc3, 0xe0, 0x0f,
0xf0, 0x01, 0xc3, 0x80, 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, 0x3f, 0xfe,
0x00, 0x00, 0x00, 0x7f, 0xff, 0x80, 0x00, 0x01, 0xff, 0xff, 0xc0, 0x00, 0x03, 0xff, 0xff, 0xf0,
0x00, 0x0f, 0xff, 0xff, 0xfe, 0x00, 0x7f, 0xff
};
void setup() {
display.begin(SSD1306_SWITCHCAPVCC, 0x3C);
display.clearDisplay();
display.setTextColor(1);
display.drawBitmap(44, 15, indobotlogo_indobot, 40, 40, WHITE);
display.display();
}
void loop() {
}