Anyone know how to programmatically set the Arduino network SSID and password using a serial port and button_click event? Thanks in Advance... Trying to build a portable wifi sensor/meter that can be changed to differing personal networks using vb by a end-user.
Re: Arduino VB Set WiFi Network SSID and Password...
You'll need to establish Serial Communications between the device and the PC. It's then a fairly simple matter to send the appropriate information (eg SSID, key) from the PC to the device which would then acces the WiFiLibrary (probably WiFi.begin(SSID, keyindex, key); (see: http://arduino.cc/en/Reference/WiFiBegin)