Main Program

Dependencies:   mbed AQM1602 HMC6352 PID

setting/LcdConfig.h

Committer:
lilac0112_1
Date:
2016-02-25
Revision:
45:c23f25c00d0d
Parent:
44:a793dd45f84c

File content as of revision 45:c23f25c00d0d:

#ifndef _LCD_CONFIG_H_
#define _LCD_CONFIG_H_

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

#endif /*_LCD_CONFIG_H_*/