#include <TinyScreen.h>
TinyScreen tiny_screen = TinyScreen(TinyScreenPlus);
void setup()
{
	tiny_screen.begin();
	tiny_screen.setBitDepth(TSBitDepth8);
	tiny_screen.setBrightness(8);
	tiny_screen.setFont(liberationSansNarrow_12ptFontInfo);
	tiny_screen.fontColor(TS_8b_White, TS_8b_Black);
}
void loop()
{
	tiny_screen.setCursor(0,0);
	tiny_screen.print("Hello World!");
}