#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
#include <Wire.h>
const int r = 128;
const int l = 64;
const int address = 60;
Adafruit_SSD1306 screen(width,tall,&Wire,-1);
void setup() {
// put your setup code here, to run once:
pinMode(r, INPUT);
pinMode(l, INPUT);
screen.begin(SSD1306_SWITCHCAPVCC,address);
screen.clearDisplay();
delay(10);
screen.drawRect(width/2, tall/2 -15,30,30,1);
}
void loop() {
// put your main code here, to run repeatedly:
}