|
1 |
| -menu "esp32_mouse_keyboard - FLipMouse & FABI config" |
2 |
| - |
3 |
| - config MODULE_RX_PIN |
4 |
| - int "RX pin for command/HID UART" |
5 |
| - default 17 |
6 |
| - range 1 39 |
7 |
| - |
8 |
| - config MODULE_TX_PIN |
9 |
| - int "TX pin for command/HID UART" |
10 |
| - default 16 |
11 |
| - range 1 39 |
12 |
| - |
13 |
| - config MODULE_LED_PIN |
14 |
| - int "LED connection indicator pin" |
15 |
| - default 5 |
16 |
| - range 1 39 |
17 |
| - |
18 |
| - config MODULE_UART_NR |
19 |
| - int "UART interface number" |
20 |
| - default 2 |
21 |
| - range 1 2 |
| 1 | +menu "esp32_mouse_keyboard / FLipMouse & FABI config" |
| 2 | + config USE_AS_FLIPMOUSE_FABI |
| 3 | + bool "Use project as FLipMouse/FABI Bluetooth module" |
| 4 | + default n |
| 5 | + help |
| 6 | + If this option is enabled, a FLipMouse/FABI Bluetooth module |
| 7 | + is built. If disabled, this project acts as demo code for Bluetooth |
| 8 | + HID code. |
| 9 | + |
| 10 | + menu "Pinning for UART RX/TX & LED (if not a defined module)" |
| 11 | + visible if !USE_AS_FLIPMOUSE_FABI |
| 12 | + |
| 13 | + config MODULE_RX_PIN |
| 14 | + int "RX pin for command/HID UART" |
| 15 | + default 17 |
| 16 | + range 1 39 |
| 17 | + |
| 18 | + config MODULE_TX_PIN |
| 19 | + int "TX pin for command/HID UART" |
| 20 | + default 16 |
| 21 | + range 1 39 |
| 22 | + |
| 23 | + config MODULE_LED_PIN |
| 24 | + int "LED connection indicator pin" |
| 25 | + default 5 |
| 26 | + range 1 39 |
22 | 27 |
|
| 28 | + config MODULE_UART_NR |
| 29 | + int "UART interface number" |
| 30 | + default 2 |
| 31 | + range 1 2 |
| 32 | + endmenu |
23 | 33 | config MODULE_USEKEYBOARD
|
24 | 34 | bool "Enable BLE-HID keyboard (UNUSED)"
|
25 | 35 | default y
|
@@ -56,50 +66,4 @@ menu "esp32_mouse_keyboard - FLipMouse & FABI config"
|
56 | 66 | If enabled, the module denies pairing requests by default.
|
57 | 67 | It is possible to enable the pairing by sending the pairing en-/disable command
|
58 | 68 | via the serial interface.
|
59 |
| - |
60 |
| - |
61 |
| - config USE_AS_FLIPMOUSE_FABI |
62 |
| - bool "Use project as FLipMouse/FABI Bluetooth module" |
63 |
| - default n |
64 |
| - help |
65 |
| - If this option is enabled, a FLipMouse/FABI Bluetooth module |
66 |
| - is built. If disabled, this project acts as demo code for Bluetooth |
67 |
| - HID code. |
68 |
| - menu "FLipMouse / FABI configuration" |
69 |
| - visible if USE_AS_FLIPMOUSE_FABI |
70 |
| - |
71 |
| - choice MODULE_TYPE |
72 |
| - prompt "Module type (FLipMouse/FABI)" |
73 |
| - depends on USE_AS_FLIPMOUSE_FABI |
74 |
| - help |
75 |
| - Specify the module type (FLipMouse or FABI). |
76 |
| - |
77 |
| - config MODULE_FLIPMOUSE |
78 |
| - bool "FLipMouse" |
79 |
| - |
80 |
| - config MODULE_FABI |
81 |
| - bool "FABI" |
82 |
| - endchoice |
83 |
| - |
84 |
| - config FM_WEBGUI |
85 |
| - bool "Enable WebGUI (UNUSED)" |
86 |
| - default n |
87 |
| - help |
88 |
| - Enable the WebGUI for the FLipMouse in the ESP32. |
89 |
| - |
90 |
| - config FM_OTA |
91 |
| - depends on MODULE_FLIPMOUSE |
92 |
| - bool "Enable programming via Teensy (UNUSED)" |
93 |
| - default n |
94 |
| - help |
95 |
| - Enable the update functionality via the Teensy module. |
96 |
| - |
97 |
| - config FABI_OTA |
98 |
| - depends on MODULE_FABI |
99 |
| - bool "Enable programming via ArduinoProMicro (UNUSED)" |
100 |
| - default n |
101 |
| - help |
102 |
| - Enable the update functionality via the Arduino Pro Micro module. |
103 |
| - |
104 |
| - endmenu |
105 | 69 | endmenu
|
0 commit comments