PokittoLib is the library needed for programming the Pokitto DIY game console (www.pokitto.com)

Dependents:   Sensitive

Fork of PokittoLib by Jonne Valola

Revision:
15:0bbe8f6fae32
Parent:
7:72f87b7c7400
--- a/POKITTO_CORE/PokittoDisplay.cpp	Wed Oct 18 14:25:12 2017 +0000
+++ b/POKITTO_CORE/PokittoDisplay.cpp	Wed Oct 18 14:47:54 2017 +0000
@@ -212,6 +212,10 @@
     lcdPixel(x,y,color);
 }
 
+void Display::directTile(int16_t x, int16_t y, int16_t x2, int16_t y2, uint16_t* gfx) {
+    lcdTile(x,y,x2,y2,gfx);
+}
+
 void Display::directRectangle(int16_t x, int16_t y,int16_t x2, int16_t y2, uint16_t color) {
     lcdRectangle(x,y,x2,y2,color);
 }