If you configure the WiFi connection via /etc/wpa_supplicant/wpa_supplicant.conf
, it should automatically connect - example file contents:
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
#Set wifi network name and password here
ssid="NAME"
psk="PASSWORD"
# Protocol type can be: RSN (for WP2) and WPA (for WPA1)
#proto=WPA2
# Key management type can be: WPA-PSK or WPA-EAP (Pre-Shared or Enterprise)
#key_mgmt=WPA-PSK
# Pairwise can be CCMP or TKIP (for WPA2 or WPA1)
#pairwise=TKIP
#Authorization option should be OPEN for both WPA1/WPA2 (in less commonly used are SHARED and LEAP)
#auth_alg=OPEN
}
You may need to set a static IP address though, otherwise the Pi may have a different IP address to the one you are expecting
Alternatively, if your WiFi hardware supports it, you get the Pi to make a wireless hotspot which devices could then connect to - this may use more power though (so it will drain batteries quicker etc).
VNC
does require configuration http://raspberrypi.stackexchange.com/a/39106/8697 shows how. – Milliways Dec 09 '15 at 08:45