#include <TinyWireM.h>
#include <Tiny4kOLED.h>
#include "font16x32digits.h"
uint8_t width = 128;
uint8_t height = 64;
int cpt=0;
void setup() {
oled.begin(width, height, sizeof(tiny4koled_init_128x64br), tiny4koled_init_128x64br);
oled.clear();
oled.on();
}
void loop() {
delay (1000);
updateDisplay();
}
void updateDisplay() {
//oled.setFont(FONT6X8P);
//oled.setFont(FONT8X16P);
//oled.clear();
oled.setFont(FONT8X16P);
oled.setCursor(5, 0);
oled.print("Blue Ring Tester");
//oled.setCursor(0, 1);
//oled.print("----------");
oled.setCursor(8, 1);
oled.setFont(FONT16X32DIGITS);
oled.setCursor(50, 4);
oled.print(cpt);
cpt=cpt+1;
}