This ih my prototipe program for displaying to vfd Noritake via SC16IS752 (i2c to Serial). for program which i use, i say sorry and you can message me for i publish. thank

Dependencies:   Noritake SC16IS752 mbed

Fork of 08_SCT_menu by Tigaresi

debug.h

Committer:
irsanjul
Date:
2016-08-10
Revision:
0:51be68b5e97c

File content as of revision 0:51be68b5e97c:

#ifndef _DEBUG_H
#define _DEBUG_H

#if 1 // colored terminal output using ANSI escape sequences
  #define COL(c) "\033[" c
 #else
  #define COL(c) 
 #endif
#define DEF COL("39m")
#define BLA COL("30m")
#define RED COL("31m")
#define GRE COL("32m")
#define YEL COL("33m")
#define BLU COL("34m")
#define MAG COL("35m")
#define CYA COL("36m")
#define WHY COL("37m")

#endif