Main Program

Dependencies:   mbed AQM1602 HMC6352 PID

setting/LcdConfig.h

Committer:
lilac0112_1
Date:
2016-01-19
Revision:
18:97eba56f82e4
Parent:
17:61edad76efd7
Child:
22:a95f7c63af3c

File content as of revision 18:97eba56f82e4:

#ifndef _LCD_CONFIG_H_
#define _LCD_CONFIG_H_

//Lcd出力文字(6文字に揃える.)
const char lcdstr[0x10][0x04][BUFSIZE]={
    {{"None  "},     {"Ir0   "},      {"Ir0   "},      {"Ir0   "}},//0
    {{"Start "},     {"Active"},      {0       },      {0       }},//1
    {{"Debug0"},     {"Ir0   "},      {"Ir1   "},      {"Ir2   "}},//2
    {{"Debug1"},     {"Mouse0"},      {"Ping0 "},      {"Gyro0 "}},//3
    {{"LnSnsr"},     {"LnRaw "},      {"LnHeld"},      {0       }},//4
    {{"Test0 "},     {0       },      {0       },      {0       }},//5
    {{"Test1 "},     {0       },      {0       },      {0       }},//6
    {{"Test2 "},     {0       },      {0       },      {0       }},//7
    {{"Calib0"},     {0       },      {0       },      {0       }},//8
    {{"Calib1"},     {0       },      {0       },      {0       }},//9
    {{"Calib2"},     {0       },      {0       },      {0       }},//A
    {{"Save  "},     {0       },      {0       },      {0       }},//B
    {{"Store "},     {0       },      {0       },      {0       }},//C
    {{"Strgy1"},     {"Atk1  "},      {"Def1  "},      {"Demo1 "}},//D
    {{"Strgy0"},     {"Atk0  "},      {"Def0  "},      {"Demo0 "}},//E
    {{"Stop  "},     {0       },      {0       },      {0       }} //F
};

#endif /*_LCD_CONFIG_H_*/