PokittoLib with changes to lcd refresh etc.

Dependents:   Pokittris

Fork of Pokitto by Pokitto Community Team

This is a fork by user @Spinal, and is used in Pokittris for testing. Do not import this to your own program.

Committer:
spinal
Date:
Sun Oct 15 18:03:02 2017 +0000
Revision:
11:02ad9c807a21
Parent:
4:ecf2fe370c1c
fixed 4color refreshRegion code

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Pokitto 4:ecf2fe370c1c 1 /**************************************************************************/
Pokitto 4:ecf2fe370c1c 2 /*!
Pokitto 4:ecf2fe370c1c 3 @file My_settings.h
Pokitto 4:ecf2fe370c1c 4 @author XX
Pokitto 4:ecf2fe370c1c 5
Pokitto 4:ecf2fe370c1c 6 @section HOW TO USE My_settings
Pokitto 4:ecf2fe370c1c 7
Pokitto 4:ecf2fe370c1c 8 My_settings can be used to set project settings inside the mbed online IDE
Pokitto 4:ecf2fe370c1c 9 */
Pokitto 4:ecf2fe370c1c 10 /**************************************************************************/
Pokitto 4:ecf2fe370c1c 11
Pokitto 4:ecf2fe370c1c 12 #ifndef MY_SETTINGS_H
Pokitto 4:ecf2fe370c1c 13 #define MY_SETTINGS_H
Pokitto 4:ecf2fe370c1c 14
Pokitto 4:ecf2fe370c1c 15 #define PROJ_HIRES 1 //1 = high resolution (220x176) , 0 = low resolution fast mode (110x88)
Pokitto 4:ecf2fe370c1c 16 #define PROJ_ENABLE_SOUND 0 // 0 = all sound functions disabled
Pokitto 4:ecf2fe370c1c 17
Pokitto 4:ecf2fe370c1c 18 #endif