Main Program

Dependencies:   mbed AQM1602 HMC6352 PID

Committer:
lilac0112_1
Date:
Tue Jan 19 10:22:47 2016 +0000
Revision:
18:97eba56f82e4
Parent:
17:61edad76efd7
Child:
22:a95f7c63af3c
Comit for BIG change.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
lilac0112_1 16:6900f47fa0b5 1 #ifndef _LCD_CONFIG_H_
lilac0112_1 16:6900f47fa0b5 2 #define _LCD_CONFIG_H_
lilac0112_1 16:6900f47fa0b5 3
lilac0112_1 16:6900f47fa0b5 4 //Lcd出力文字(6文字に揃える.)
lilac0112_1 16:6900f47fa0b5 5 const char lcdstr[0x10][0x04][BUFSIZE]={
lilac0112_1 18:97eba56f82e4 6 {{"None "}, {"Ir0 "}, {"Ir0 "}, {"Ir0 "}},//0
lilac0112_1 18:97eba56f82e4 7 {{"Start "}, {"Active"}, {0 }, {0 }},//1
lilac0112_1 18:97eba56f82e4 8 {{"Debug0"}, {"Ir0 "}, {"Ir1 "}, {"Ir2 "}},//2
lilac0112_1 18:97eba56f82e4 9 {{"Debug1"}, {"Mouse0"}, {"Ping0 "}, {"Gyro0 "}},//3
lilac0112_1 18:97eba56f82e4 10 {{"LnSnsr"}, {"LnRaw "}, {"LnHeld"}, {0 }},//4
lilac0112_1 18:97eba56f82e4 11 {{"Test0 "}, {0 }, {0 }, {0 }},//5
lilac0112_1 18:97eba56f82e4 12 {{"Test1 "}, {0 }, {0 }, {0 }},//6
lilac0112_1 18:97eba56f82e4 13 {{"Test2 "}, {0 }, {0 }, {0 }},//7
lilac0112_1 18:97eba56f82e4 14 {{"Calib0"}, {0 }, {0 }, {0 }},//8
lilac0112_1 18:97eba56f82e4 15 {{"Calib1"}, {0 }, {0 }, {0 }},//9
lilac0112_1 18:97eba56f82e4 16 {{"Calib2"}, {0 }, {0 }, {0 }},//A
lilac0112_1 18:97eba56f82e4 17 {{"Save "}, {0 }, {0 }, {0 }},//B
lilac0112_1 18:97eba56f82e4 18 {{"Store "}, {0 }, {0 }, {0 }},//C
lilac0112_1 18:97eba56f82e4 19 {{"Strgy1"}, {"Atk1 "}, {"Def1 "}, {"Demo1 "}},//D
lilac0112_1 18:97eba56f82e4 20 {{"Strgy0"}, {"Atk0 "}, {"Def0 "}, {"Demo0 "}},//E
lilac0112_1 18:97eba56f82e4 21 {{"Stop "}, {0 }, {0 }, {0 }} //F
lilac0112_1 16:6900f47fa0b5 22 };
lilac0112_1 16:6900f47fa0b5 23
lilac0112_1 16:6900f47fa0b5 24 #endif /*_LCD_CONFIG_H_*/