PokittoLib is the library needed for programming the Pokitto DIY game console (www.pokitto.com)
Dependents: YATTT sd_map_test cPong SnowDemo ... more
PokittoLib
Library for programming Pokitto hardware
How to Use
- Import this library to online compiler (see button "import" on the right hand side
- DO NOT import mbed-src anymore, a better version is now included inside PokittoLib
- Change My_settings.h according to your project
- Start coding!
POKITTO_XTERNALS/Arduino/delay.cpp@71:531419862202, 2019-12-25 (annotated)
- Committer:
- Pokitto
- Date:
- Wed Dec 25 23:59:52 2019 +0000
- Revision:
- 71:531419862202
- Parent:
- 8:754a7af30890
Changed Mode2 C++ refresh code (graphical errors)
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Pokitto | 8:754a7af30890 | 1 | #include <Arduino.h> |
Pokitto | 8:754a7af30890 | 2 | #include "PokittoCore.h" |
Pokitto | 8:754a7af30890 | 3 | |
Pokitto | 8:754a7af30890 | 4 | Pokitto::Core _dc; |
Pokitto | 8:754a7af30890 | 5 | |
Pokitto | 8:754a7af30890 | 6 | /** for Arduino compatibility **/ |
Pokitto | 8:754a7af30890 | 7 | void delay(unsigned long t) { |
Pokitto | 8:754a7af30890 | 8 | _dc.wait(t); |
Pokitto | 8:754a7af30890 | 9 | } |