I’ve had to use this command to get wifi-connect to install on pi os bookwork running on at pi B3+:
curl -L https://github.com/balena-io/wifi-connect/raw/master/scripts/raspbian-install.sh | sed 's/\*rpi/*aarch64/' | bash
It installed correctly, but I can’t get the script to run at startup using crontab. I’ve added the start.sh file to home/pi and added to the crontab file:
@reboot sleep 10 && /home/pi/start.sh
If i simply run sh start.sh while connect to the network MYSSID i get the correct response of:
MYSSID
Skipping WiFi Connect
Am I doing this wrong? Thanks!