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

Dependents:   Sensitive

Fork of PokittoLib by Jonne Valola

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers delay.cpp Source File

delay.cpp

00001 #include <Arduino.h>
00002 #include "PokittoCore.h "
00003 
00004 Pokitto::Core _dc;
00005 
00006 /** for Arduino compatibility **/
00007 void delay(unsigned long t) {
00008     _dc.wait(t);
00009 }