Include <SPI.h>
include <Wire.h>
include <Adafruit_GFX.h>
indlude <Adafruit_SSD1306.h>

#define DIS WIDTH 128
#define DIS HEIGHT 32

#define OLED_RESET  -1
Adafruit_SSD1306 display(OLED_RESET);

Adafruit_SSD1306 display(-1);

#define IMG_HEIGHT 128
#define IMG_WIDTH 32

void setup() {
  // put your setup code here, to run once:
Serial.begin(9600);
delay(2000);
display.clearDisplay();
Serial.println("Display Bitmap Image");

}

void loop() {
  // put your main code here, to run repeatedly:

}