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:
Mon Sep 18 11:47:51 2017 +0000
Revision:
0:e8b8f36b4505
Initial;

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 // A palette with blue and silver gradients and color highlights for shooter games
Pokitto 0:e8b8f36b4505 4
Pokitto 0:e8b8f36b4505 5 const unsigned char paletteAction[48] = {
Pokitto 0:e8b8f36b4505 6 0x04,0x07,0x1f,
Pokitto 0:e8b8f36b4505 7 0x05,0x05,0x5f,
Pokitto 0:e8b8f36b4505 8 0x0e,0x09,0x93,
Pokitto 0:e8b8f36b4505 9 0x18,0x22,0xc4,
Pokitto 0:e8b8f36b4505 10 0x53,0xa5,0x4a,
Pokitto 0:e8b8f36b4505 11 0xef,0xbc,0x2b,
Pokitto 0:e8b8f36b4505 12 0xaf,0x50,0x26,
Pokitto 0:e8b8f36b4505 13 0x8f,0x11,0x0e,
Pokitto 0:e8b8f36b4505 14 0x14,0x20,0x38,
Pokitto 0:e8b8f36b4505 15 0x23,0x34,0x4f,
Pokitto 0:e8b8f36b4505 16 0x32,0x48,0x66,
Pokitto 0:e8b8f36b4505 17 0x47,0x62,0x8c,
Pokitto 0:e8b8f36b4505 18 0x66,0x7d,0xc7,
Pokitto 0:e8b8f36b4505 19 0x4b,0xa9,0xd1,
Pokitto 0:e8b8f36b4505 20 0x15,0xc9,0xda,
Pokitto 0:e8b8f36b4505 21 0xb8,0xed,0xfb
Pokitto 0:e8b8f36b4505 22 };
Pokitto 0:e8b8f36b4505 23