瀏覽代碼

Change setting in UI

Christopher Mullins 6 年之前
父節點
當前提交
7f3d8b5e83
共有 2 個文件被更改,包括 8 次插入7 次删除
  1. 2 2
      dist/index.html.gz.h
  2. 6 5
      web/src/js/script.js

文件差異過大導致無法顯示
+ 2 - 2
dist/index.html.gz.h


+ 6 - 5
web/src/js/script.js

@@ -79,13 +79,14 @@ var UI_FIELDS = [ {
     type: "string",
     tab: "tab-wifi"
   }, {
-    tag: "wifi_force_b_mode",
-    friendly: "Force 802.11b Mode",
-    help: "If true, force the ESP8266 into 802.11b mode.  Try this if you're having wifi stability problems.",
+    tag: "wifi_mode",
+    friendly: "WiFi Mode",
+    help: "Try using G mode if you're having stability problems",
     type: "option_buttons",
     options: {
-      'true': 'True',
-      'false': 'False'
+      'b': 'B',
+      'g': 'G',
+      'n': 'N'
     },
     tab: "tab-wifi"
   }, {