-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kconfig
85 lines (71 loc) · 1.78 KB
/
Kconfig
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
menu "deets ESP32 library"
config DEETS_USE_WIFI
string "Use WIFI"
default n
help
Add WIFI helpers
config DEETS_USE_BUTTONS
string "Use buttons"
default n
help
Add button code
config DEETS_WIFI_NETWORK_CONFIG
string "Network configuration"
default ""
help
A string of <ssid>:<password>[, ...]
config DEETS_WIFI_MAXIMUM_RETRY
int "Maximum WIFI retry"
default 5
help
Set the Maximum retry to avoid station reconnecting to the AP unlimited when the AP is really inexistent.
config DEETS_USE_U8G2
bool "Use U8G2 display library"
default n
help
If defined, pull in the U8G2 display library.
config DEETS_USE_I2C
bool "Use I2C abstraction"
default n
help
If defined, pull in the I2C abstraction
config DEETS_USE_MPU6050
bool "Use MPU6050"
default n
select DEETS_USE_I2C
help
If defined, pull in the MPU6050
config DEETS_USE_NRF24
bool "Use NRF24P01 radio transceiver"
default n
help
If defined, pull in the NRF24 radio transceiver
config DEETS_USE_RF95
bool "Use RF95 LoRa transceiver"
default n
help
If defined, pull in the RF95 radio transceiver
config DEETS_USE_DRV2605
bool "Use DRV2605 haptics processor"
default n
select DEETS_USE_I2C
help
If defined, pull in the DRV2605 haptics processor
config DEETS_USE_TCA9548A
bool "Use TCA9548A I2C mux"
default n
select DEETS_USE_I2C
help
If defined, pull in the TCA9548A I2C bus multiplexer
config DEETS_USE_SHT3XDIS
bool "Use SHT3XDIS humidity/temperature sensor"
default n
select DEETS_USE_I2C
help
If defined, pull in SHT3XDIS sensor
config DEETS_USE_HTTP
bool "Use embedded HTTP server"
default n
help
If defined, pull in the http server component
endmenu