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

Dependents:   Sensitive

Fork of PokittoLib by Jonne Valola

Committer:
spinal
Date:
Wed Oct 18 14:47:54 2017 +0000
Revision:
15:0bbe8f6fae32
Parent:
9:754a7af30890
direct lcd stuff used by sensitive

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Pokitto 9:754a7af30890 1 #include <Arduino.h>
Pokitto 9:754a7af30890 2 #include "PokittoCore.h"
Pokitto 9:754a7af30890 3
Pokitto 9:754a7af30890 4 Pokitto::Core _dc;
Pokitto 9:754a7af30890 5
Pokitto 9:754a7af30890 6 /** for Arduino compatibility **/
Pokitto 9:754a7af30890 7 void delay(unsigned long t) {
Pokitto 9:754a7af30890 8 _dc.wait(t);
Pokitto 9:754a7af30890 9 }