Main Program

Dependencies:   mbed AQM1602 HMC6352 PID

setting/LcdConfig.h

Committer:
lilac0112_1
Date:
2016-01-31
Revision:
26:fbb03281fc7d
Parent:
23:d95d8d3e89f3
Child:
27:769cb5a7ea37

File content as of revision 26:fbb03281fc7d:

#ifndef _LCD_CONFIG_H_
#define _LCD_CONFIG_H_

//Lcd出力文字(6文字に揃える.)
const char lcdstr[0x10][0x04][BUFSIZE]={
    {{"None  "},     {"Strgy "},      {0       },      {0       }},//0
    {{"Start "},     {"Active"},      {0       },      {0       }},//1
    {{"Ir    "},     {"IrSpot"},      {"IrNote"},      {"IrPstn"}},//2
    {{"Line  "},     {"LnABC "},      {0       },      {0       }},//3
    {{"Cmps  "},     {"Cmps  "},      {0       },      {0       }},//4
    {{"ClbEnt"},     {"Enter "},      {0       },      {0       }},//5
    {{"ClbExt"},     {"Exit  "},      {0       },      {0       }},//6
    {{"Test2R"},     {0       },      {0       },      {0       }},//7
    {{"CalibR"},     {0       },      {0       },      {0       }},//8
    {{"CalibR"},     {0       },      {0       },      {0       }},//9
    {{"ResetR"},     {0       },      {0       },      {0       }},//A
    {{"Test0 "},     {"Debug0"},      {"Debug1"},      {"Debug2"}},//B
    {{"Test1 "},     {"Debug3"},      {"Debug4"},      {"Debug5"}},//C
    {{"Strgy1"},     {"Atk0  "},      {"Atk1  "},      {"Atk2  "}},//D
    {{"Strgy0"},     {"Atk3  "},      {"Atk4  "},      {"Atk5 "}},//E
    {{"StopR "},     {0       },      {0       },      {0       }} //F
};

#endif /*_LCD_CONFIG_H_*/