Trying to get a pi with open sprinkler to work on an unsecured network. I can get it to connect while sitting on my desk to a secured network with the following code:
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
# To configure wifi access insert your SSID and PSK with keeping the quotation marks then save the file
network={
ssid="ConfRm_2.4GHz"
psk="*********"
proto=RSN
key_mgmt=WPA-PSK
pairwise=CCMP
auth_alg=OPEN
}
When I move it to the sprinkler box there is not a secure network to use so I change the code to this but it will not connect.
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
# To configure wifi access insert your SSID and PSK with keeping the quotation marks then save the file
network={
ssid="Hutchinson Campus WiFi"
key_mgmt=none
}
How do I connect to the unsecured network?
