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

  1. Import this library to online compiler (see button "import" on the right hand side
  2. DO NOT import mbed-src anymore, a better version is now included inside PokittoLib
  3. Change My_settings.h according to your project
  4. Start coding!
Committer:
Pokitto
Date:
Wed Dec 25 23:59:52 2019 +0000
Revision:
71:531419862202
Parent:
0:e8b8f36b4505
Changed Mode2 C++ refresh code (graphical errors)

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Pokitto 0:e8b8f36b4505 1 #include "PokittoPalettes.h"
Pokitto 0:e8b8f36b4505 2
Pokitto 0:e8b8f36b4505 3 const unsigned char paletteMagma[48] = {
Pokitto 0:e8b8f36b4505 4 0xfb,0xff,0xb2,
Pokitto 0:e8b8f36b4505 5 0xfc,0xda,0x90,
Pokitto 0:e8b8f36b4505 6 0xfc,0xad,0x6e,
Pokitto 0:e8b8f36b4505 7 0xfa,0x82,0x56,
Pokitto 0:e8b8f36b4505 8 0xf2,0x57,0x4a,
Pokitto 0:e8b8f36b4505 9 0xe7,0x43,0x4c,
Pokitto 0:e8b8f36b4505 10 0xc4,0x2a,0x5c,
Pokitto 0:e8b8f36b4505 11 0xa7,0x20,0x66,
Pokitto 0:e8b8f36b4505 12 0x89,0x19,0x6c,
Pokitto 0:e8b8f36b4505 13 0x6e,0x12,0x6e,
Pokitto 0:e8b8f36b4505 14 0x62,0x0d,0x6e,
Pokitto 0:e8b8f36b4505 15 0x53,0x06,0x6d,
Pokitto 0:e8b8f36b4505 16 0x3f,0x00,0x69,
Pokitto 0:e8b8f36b4505 17 0x2a,0x00,0x5b,
Pokitto 0:e8b8f36b4505 18 0x18,0x0b,0x3a,
Pokitto 0:e8b8f36b4505 19 0x06,0x04,0x11
Pokitto 0:e8b8f36b4505 20 };
Pokitto 0:e8b8f36b4505 21