/*
* 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
*
* This example shows a full screen rectangle,
* writes the rectangle size inside the rectangle,
* and scrolls the size off the screen.
*
*/
#include <Tiny4kOLED.h>
uint8_t width = 128;
uint8_t height = 64;
void setup() {
oled.begin(width, height, sizeof(tiny4koled_init_128x64br), tiny4koled_init_128x64br);
oled.setFont(FONT6X8);
oled.on();
}
void loop() {
oled.setCursor(0, 0);
oled.print("HELLO");
}