1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
| static const setup_menu_t volume_setup_menu = {
volume_setup_menu_constructor, //コンストラクタ
{
{ WhiteSpaceFilledLine, NULL, nop_onFocus_hook, nop_and_continue_onKeyUp_hook }, //ガード
// 1234567890123456
{ "0", "x00", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "1", "x01", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "2", "x02", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "3", "x03", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "4", "x04", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "5", "x05", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "6", "x06", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "7", "x07", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "8", "x08", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "9", "x09", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "10", "x0a", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "11", "x0b", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "12", "x0c", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "13", "x0d", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "14", "x0e", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "15", "x0f", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "16", "x10", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "17", "x11", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "18", "x12", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "19", "x13", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "20", "x14", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "21", "x15", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "22", "x16", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "23", "x17", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "24", "x18", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "25", "x19", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "26", "x1a", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "27", "x1b", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "28", "x1c", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "29", "x1d", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "30", "x1e", nop_onFocus_hook, volume_set_onKeyUp_hook },
{ "31", "x1f", nop_onFocus_hook, volume_set_onKeyUp_hook },
// 1234567890123456
{ WhiteSpaceFilledLine, NULL, nop_onFocus_hook, nop_and_continue_onKeyUp_hook }, //ガード
}
};
|
2 thoughts on “自作赤外線リモコンコントロールアンプのシステム設定インターフェースを実装した”
I would like this!!!
Much thanks again. Want more.