mirror of
https://github.com/Doodle3D/doodle3d-firmware.git
synced 2024-11-17 02:57:56 +01:00
Use WPS button to switch configs
Added a functionality for the WPS button. (next to the leds)
This commit is contained in:
parent
0bdaca4971
commit
039fbbb4c3
4
Makefile
4
Makefile
@ -101,6 +101,10 @@ define Package/wifibox/install
|
||||
#$(INSTALL_DIR) $(1)/www
|
||||
$(INSTALL_DIR) $(1)/www/cgi-bin
|
||||
|
||||
#copy wps button script to procd folder
|
||||
$(INSTALL_DIR) $(1)/etc/rc.button/
|
||||
$(INSTALL_BIN) $(WIFIBOX_BASE_DIR)/script/wifi-switch-netconfig.sh $(1)/etc/rc.button/wps
|
||||
|
||||
### create all files in /usr/share/lua/autowifi (autowifi)
|
||||
|
||||
$(CP) $(WIFIBOX_BASE_DIR)/opkg.conf $(1)/$(TGT_LUA_DIR_SUFFIX)/
|
||||
|
22
src/script/wifi-switch-netconfig.sh
Executable file
22
src/script/wifi-switch-netconfig.sh
Executable file
@ -0,0 +1,22 @@
|
||||
#!/bin/sh
|
||||
|
||||
[ "${ACTION}" = "released" ] || exit 0
|
||||
|
||||
. /lib/functions.sh
|
||||
|
||||
logger "$BUTTON pressed for $SEEN seconds"
|
||||
if [ "$SEEN" -lt 1 ]
|
||||
then
|
||||
#see https://github.com/Doodle3D/doodle3d-firmware/blob/master/src/network/wlanconfig.lua#L188 for reference
|
||||
#check if network on top is enabled
|
||||
uci get wireless.@wifi-iface[0].disabled
|
||||
RESULT=$?
|
||||
if [ $RESULT -eq 0 ]
|
||||
then
|
||||
uci set wireless.@wifi-iface[0].disabled=1 #disable current config
|
||||
uci set wireless.@wifi-iface[1].disabled=0 #enable last used network
|
||||
uci reorder wireless.@wifi-iface[0]=2 #reorder networks so last used config goes to the top again
|
||||
uci commit wireless #commit changes
|
||||
/etc/init.d/network reload #reload network module so changes become effective
|
||||
fi
|
||||
fi
|
Loading…
Reference in New Issue
Block a user