wifi_enterCommandMode();
// wifi_sendCommand("set wlan join 0"); // disable auto associate
// wifi_sendCommand("save"); // needed to disable auto associate permanently!
wifi_sendCommand("set comm size 1420"); // set flush size as large as possible
wifi_sendCommand("set ip proto 18"); // http + tcp mode
wifi_sendCommand("set ip remote 80"); // port 80
wifi_sendCommand("set ip address 0"); // turn on dns
wifi_sendCommand("set comm remote 0"); // no default string upon open TCPC connection...
// wifi_sendCommand("set wlan pass p@ssw0rd"); // set wireless password if needed
wifi_sendCommand("join MIT"); // join wireless network
wifi_exitCommandMode();