Main Program

Dependencies:   mbed AQM1602 HMC6352 PID

Committer:
lilac0112_1
Date:
Mon Jan 18 02:14:23 2016 +0000
Revision:
17:61edad76efd7
Parent:
16:6900f47fa0b5
Child:
18:97eba56f82e4
succeed in switching; ensured start/stop system.

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 17:61edad76efd7 6 {{"None "}, {"Ir0 "}, {"Ir0 "}, {"Ir0 "}},
lilac0112_1 17:61edad76efd7 7 {{"Start "}, {"Active"}, {0 }, {0 }},
lilac0112_1 16:6900f47fa0b5 8 {{"Debug0"}, {"Ir0 "}, {"Ir1 "}, {"Ir2 "}},
lilac0112_1 16:6900f47fa0b5 9 {{"Debug1"}, {"Ping0 "}, {"Mouse0"}, {"Gyro0 "}},
lilac0112_1 16:6900f47fa0b5 10 {{"Debug2"}, {0 }, {0 }, {0 }},
lilac0112_1 16:6900f47fa0b5 11 {{"Test0 "}, {0 }, {0 }, {0 }},
lilac0112_1 16:6900f47fa0b5 12 {{"Test1 "}, {0 }, {0 }, {0 }},
lilac0112_1 16:6900f47fa0b5 13 {{"Test2 "}, {0 }, {0 }, {0 }},
lilac0112_1 16:6900f47fa0b5 14 {{"Calib0"}, {0 }, {0 }, {0 }},
lilac0112_1 16:6900f47fa0b5 15 {{"Calib1"}, {0 }, {0 }, {0 }},
lilac0112_1 16:6900f47fa0b5 16 {{"Calib2"}, {0 }, {0 }, {0 }},
lilac0112_1 16:6900f47fa0b5 17 {{"Save "}, {0 }, {0 }, {0 }},
lilac0112_1 16:6900f47fa0b5 18 {{"Store "}, {0 }, {0 }, {0 }},
lilac0112_1 16:6900f47fa0b5 19 {{"Def0 "}, {0 }, {0 }, {0 }},
lilac0112_1 16:6900f47fa0b5 20 {{"Att0 "}, {0 }, {0 }, {0 }},
lilac0112_1 16:6900f47fa0b5 21 {{"Stop "}, {0 }, {0 }, {0 }}
lilac0112_1 16:6900f47fa0b5 22 };
lilac0112_1 16:6900f47fa0b5 23
lilac0112_1 16:6900f47fa0b5 24 #endif /*_LCD_CONFIG_H_*/