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 paletteDB16[48] = {
Pokitto 0:e8b8f36b4505 4 0x14,0x0C,0x1C, //140c1c
Pokitto 0:e8b8f36b4505 5 0x44,0x24,0x34, //442434
Pokitto 0:e8b8f36b4505 6 0x30,0x34,0x6D, //30346d
Pokitto 0:e8b8f36b4505 7 0x4E,0x4A,0x4E, //4e4a4e
Pokitto 0:e8b8f36b4505 8
Pokitto 0:e8b8f36b4505 9 0x85,0x4C,0x30, //854c30
Pokitto 0:e8b8f36b4505 10 0x34,0x65,0x24, //346524
Pokitto 0:e8b8f36b4505 11 0xD0,0x46,0x48, //d04648
Pokitto 0:e8b8f36b4505 12 0x75,0x71,0x61, //757161
Pokitto 0:e8b8f36b4505 13
Pokitto 0:e8b8f36b4505 14 0x59,0x7D,0xCE, //597dce
Pokitto 0:e8b8f36b4505 15 0xD2,0x7D,0x2C, //d27d2c
Pokitto 0:e8b8f36b4505 16 0x85,0x95,0xA1, //8595a1
Pokitto 0:e8b8f36b4505 17 0x6D,0xAA,0x2C, //6daa2c
Pokitto 0:e8b8f36b4505 18
Pokitto 0:e8b8f36b4505 19 0xD2,0xAA,0x99, //d2aa99
Pokitto 0:e8b8f36b4505 20 0x6D,0xC2,0xCA, //6dc2ca
Pokitto 0:e8b8f36b4505 21 0xDA,0xD4,0x5E, //dad45e
Pokitto 0:e8b8f36b4505 22 0xDE,0xEE,0xD6 //deeed6
Pokitto 0:e8b8f36b4505 23 };
Pokitto 0:e8b8f36b4505 24