/*
 * Tiny4kOLED - Drivers for SSD1306 controlled dot matrix OLED/PLED 128x32 displays
 *
 * Based on ssd1306xled, re-written and extended by Stephen Denne
 * from 2017-04-25 at https://github.com/datacute/Tiny4kOLED
 *
 */

#include <TinyWireM.h>
#include <Tiny4kOLED.h>

// ============================================================================

// This font is included in https://github.com/datacute/TinyOLED-Fonts
// Available in the arduino IDE by installing the TinyOLED-Fonts library
#include "Latin1_16_Unicode.h"

// ============================================================================

uint8_t currentCharacter;

void setup() {
  // put your setup code here, to run once:

  oled.begin(128, 64, sizeof(tiny4koled_init_defaults), tiny4koled_init_defaults);
  oled.enableChargePump();
  oled.setRotation(1);
  //oled.begin(128, 64, sizeof(tiny4koled_init_128x64br), tiny4koled_init_128x64br);
  oled.setUnicodeFont(FONTLATIN1_16);
  drawScreen();
  oled.on();
}

void loop() {
  delay(1000);
}

void drawScreen() {
  oled.clear();
  oled.setCursor(0, 0);
  oled.println("Fünfte Straße");
}
ATTINY8520PU