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!

POKITTO_CORE/PALETTES/palMono.cpp

Committer:
Pokitto
Date:
2018-10-23
Revision:
63:7d1c08cdde5c
Parent:
0:e8b8f36b4505

File content as of revision 63:7d1c08cdde5c:

#include "PokittoPalettes.h"

const unsigned char paletteMono[48] = {
0xFF,0xFF,0xFF, //white
0xAA,0xAA,0xAA, //light gray
0x55,0x55,0x55, //dark gray
0x00,0x00,0x00, //black

0xFF,0xea,0xed, //white ffeaed
0xA1,0xce,0xe8, //light gray a1cee8
0x00,0x92,0xb6, //dark gray 0092b6
0x66,0x00,0x5f, //black 66005f

0xed,0xFf,0xea, //white edffea
0xff,0xb1,0xe2, //light gray efa1ce ffb1e2
0xb6,0x00,0x92, //dark gray b60092
0x5f,0x66,0x00, //black 5f6600

0xFF,0xFF,0xFF, //white
0xAA,0xAA,0xAA, //light gray
0x55,0x55,0x55, //dark gray
0x00,0x00,0x00, //black
};