Skip to content

Commit

Permalink
Fixed some true/false mentions in help text.
Browse files Browse the repository at this point in the history
  • Loading branch information
MauAbata committed May 2, 2023
1 parent bf13d6e commit 1f23931
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ and is automatically generated. Here is a quick summary of config variables:
|---|----|---|---|
|`wifi_ssid`|String|""|Your WiFi SSID.|
|`wifi_key`|String|""|Your WiFi Password.|
|`wifi_on`|Boolean|false|True to enable WiFi / Websocket server.|
|`wifi_on`|Boolean|false|Enable WiFi and the Websocket server. Cannot be enabled if AzureFang is on.|
|`bt_display_name`|String|"Edge-o-Matic 3000"|AzureFang* device name, you might wanna change this.|
|`bt_on`|Boolean|false|True to enable the AzureFang connection.|
|`force_bt_coex`|Boolean|false|True to force AzureFang and WiFi at the same time**.|
|`led_brightness`|Byte|128|LED Ring max brightness, only for NoGasm+.|
|`bt_on`|Boolean|false|Enable AzureFang connectivity. Cannot be enabled if WiFi is on.|
|`force_bt_coex`|Boolean|false|Force AzureFang and WiFi at the same time**.|
|`led_brightness`|Byte|128|Status LED maximum brightness.|
|`websocket_port`|Int|80|Port to listen for incoming Websocket connections.|
|`use_ssl`|Boolean|false|Enable SSL server, which will eat all your RAM!|
|`hostname`|String|"eom3k"|Local hostname for your device.|
Expand Down
8 changes: 4 additions & 4 deletions include/assets/config_help.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ extern "C" {

#define WIFI_SSID_HELP _HELPSTR("Your WiFi SSID.")
#define WIFI_KEY_HELP _HELPSTR("Your WiFi Password.")
#define WIFI_ON_HELP _HELPSTR("True to enable WiFi / Websocket server.")
#define WIFI_ON_HELP _HELPSTR("Enable WiFi and the Websocket server. Cannot be enabled if AzureFang is on.")
#define BT_DISPLAY_NAME_HELP _HELPSTR("AzureFang* device name, you might wanna change this.")
#define BT_ON_HELP _HELPSTR("True to enable the AzureFang connection.")
#define FORCE_BT_COEX_HELP _HELPSTR("True to force AzureFang and WiFi at the same time**.")
#define LED_BRIGHTNESS_HELP _HELPSTR("LED Ring max brightness, only for NoGasm+.")
#define BT_ON_HELP _HELPSTR("Enable AzureFang connectivity. Cannot be enabled if WiFi is on.")
#define FORCE_BT_COEX_HELP _HELPSTR("Force AzureFang and WiFi at the same time**.")
#define LED_BRIGHTNESS_HELP _HELPSTR("Status LED maximum brightness.")
#define WEBSOCKET_PORT_HELP _HELPSTR("Port to listen for incoming Websocket connections.")
#define USE_SSL_HELP _HELPSTR("Enable SSL server, which will eat all your RAM!")
#define HOSTNAME_HELP _HELPSTR("Local hostname for your device.")
Expand Down

0 comments on commit 1f23931

Please sign in to comment.