diff --git a/internal_filesystem/builtin/apps/com.micropythonos.hotspot/assets/hotspot.py b/internal_filesystem/builtin/apps/com.micropythonos.hotspot/assets/hotspot.py index 3148ea8a..79a6bbf3 100644 --- a/internal_filesystem/builtin/apps/com.micropythonos.hotspot/assets/hotspot.py +++ b/internal_filesystem/builtin/apps/com.micropythonos.hotspot/assets/hotspot.py @@ -49,6 +49,21 @@ class Hotspot(SettingsActivity): "key": "password", "placeholder": "Leave empty for open network", }, + { + "title": "Auth Mode", + "key": "authmode", + "ui": "dropdown", + "ui_options": [ + ("Auto", None), + ("Open", "open"), + ("WPA", "wpa"), + ("WPA2", "wpa2"), + ("WPA/WPA2", "wpa_wpa2"), + ], + "changed_callback": self.toggle_hotspot, + }, + ''' + # These settings are too much: { "title": "Channel", "key": "channel", @@ -66,19 +81,6 @@ class Hotspot(SettingsActivity): "key": "max_clients", "placeholder": "Max connections, e.g. 4", }, - { - "title": "Auth Mode", - "key": "authmode", - "ui": "dropdown", - "ui_options": [ - ("Auto", None), - ("Open", "open"), - ("WPA", "wpa"), - ("WPA2", "wpa2"), - ("WPA/WPA2", "wpa_wpa2"), - ], - "changed_callback": self.toggle_hotspot, - }, { "title": "IP Address", "key": "ip", @@ -99,6 +101,7 @@ class Hotspot(SettingsActivity): "key": "dns", "placeholder": "DNS, e.g. 8.8.8.8", }, + ''' ], ) return intent