/*
Why the heart icon? Because I thought it was cool
and I want to use it in the future with some heartbeat sensor.
I needed to keep it somewhere and it was here. ;)
*/
#include <dht.h>
#include <TinyWireM.h>
#include <Tiny4kOLED.h>
void prepareDisplay() {
unsigned int i, k;
unsigned char ch[5];
oled.clear();
oled.begin();
oled.setCursor(18, 1);
oled.print(F("I keep myself busy with the things I do But every time I pause, I still think of YOU."));
}
void setup() {
oled.begin(128, 64, sizeof(tiny4koled_init_128x64br), tiny4koled_init_128x64br);
// Two fonts are supplied with this library, FONT8X16 and FONT6X8
oled.setFont(FONT6X8);
// To clear all the memory
oled.clear();
oled.on();
delay(3000);
prepareDisplay();
}
void loop() {}