#include "SSD1306_minimal.h"
#include <avr/pgmspace.h>
// #include <Tiny4kOLED.h>

#define DHTPIN 1     // what pin we're connected to
#define DHTTYPE DHT11   // DHT 11

SSD1306_Mini oled;
int a = 0;

void setup() {
  
  oled.init(0x3c);
  oled.clear();
  oled.startScreen();
  oled.cursorTo(8, 1);
  oled.printString("attiny85 & dht11");

  oled.cursorTo(0, 4);
  oled.printString("Temp: ");

  oled.cursorTo(0, 6);
  oled.printString("Humidity: ");
}


void loop() {
  a++;
  
    delay(1000);
    char temp[16];
    oled.cursorTo(115, 4);
    itoa(a, temp, 10);
    oled.printString(temp);
//
//  char hum[16];
//  oled.cursorTo(115, 6);
//  itoa((int)dht.readHumidity(), hum, 10);
//  oled.printString(hum);

}
ATTINY8520PU