This is an example "Hello World" program that works with the latest Pokitto library release
Dependencies: PokittoLib
Pokitto "Hello World!" example
Press "Import into Compiler" on the top right of this page to try this code yourself!
main.cpp
- Committer:
- Pokitto
- Date:
- 2020-05-19
- Revision:
- 18:f98cbe1dc506
- Parent:
- 17:2bf164ef973d
File content as of revision 18:f98cbe1dc506:
#include "Pokitto.h" Pokitto::Core mygame; int main () { mygame.begin(); while (mygame.isRunning()) { if (mygame.update()) { mygame.display.println("Hello World!"); } } }