#include <SPI.h>
#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>

#define SCREEN_WIDTH 128 // OLED display width, in pixels
#define SCREEN_HEIGHT 64 // OLED display height, in pixels

// Declaration for an SSD1306 display connected to I2C (SDA, SCL pins)
#define OLED_RESET     4 // Reset pin # (or -1 if sharing Arduino reset pin)
Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET);

void setup() {


  // Pull up the button
  Serial.begin(9600);

  // SSD1306_SWITCHCAPVCC = generate display voltage from 3.3V internally
  if(!display.begin(SSD1306_SWITCHCAPVCC, 0x3D)) { // Address 0x3D for 128x64
    Serial.println(F("SSD1306 allocation failed"));
    for(;;); // Don't proceed, loop forever
  }

  // Show initial display buffer contents on the screen --
  // the library initializes this with an Adafruit splash screen.
  display.display();

    display.clearDisplay();

  display.setTextSize(1); // Draw 2X-scale text
  display.setTextColor(SSD1306_WHITE);
  display.setCursor(10, 2);
  display.println(F("Seb"));
  display.display();      // Show initial text
  delay(100);

  delay(2000); // Pause for 2 seconds

   



 
}

void loop() {

  
    display.clearDisplay();

    int val = analogRead(A0);

    display.setTextSize(0.5); // Draw 2X-scale text
    display.setTextColor(SSD1306_WHITE);
    display.setCursor(8,5);
    display.println("Potentiometer val:");

    display.setTextSize(3); // Draw 2X-scale text
    display.setCursor(20, 20);
    display.println(val);
    display.display();      // Show initial text
    delay(100);
   

}