소스 검색

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"
   }, {