// ATtiny85 OLED Example
//
#include <TinyWireM.h>
#include <Tiny4kOLED.h>
void setup() {
// put your setup code here, to run once:
oled.begin();
// oled.clear();
oled.setFont(FONT6X8);
}
void loop() {
// put your main code here, to run repeatedly:
oled.clear();
oled.setCursor(15,1);
oled.print("ATtiny85 SSD1306");
oled.setCursor(30,3);
oled.print("Hello World!");
oled.setCursor(30,5);
oled.print("Count:");
for (int i=0; i<1000; i++){
oled.setCursor(70,5);
oled.print(i);
delay(10);
}
}