Hi Gary,
Welcome to the forum.
Sorry for the delayed reply.
The Wifi dongle is working as an access point, so that may be the reason it's not showing up as you expect?
When you view nearby WiFi networks with a device such as a phone, do you see a network called Pi_Mini_Robot? Normally you'd connect to that network (password Raspberry with a capital R) and control the robot by navigating to its IP address 192.168.42.1 with a webbrowser such as Chrome or Firefox.
If you'd like to make the robot connect to your router then you'll need to edit the file /etc/network/interfaces. You can open it by running
- Code: Select all
sudo nano /etc/network/interfaces
and editing it to look something like this
- Code: Select all
auto lo
iface lo inet loopback
iface eth0 inet dhcp
allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-ssid "Router_SSID"
wpa-psk "Router_Password"
You also need to disable the access point functionality. This can be done in a hacky way by running
- Code: Select all
sudo nano /etc/hostapd/hostapd.conf
and changing the driver line to read
- Code: Select all
driver=disabled
Hope that helps and is what you were looking for. Apologies if I've misunderstood.
Regards
Alan