Below is a bit of generic code to get the Digix to connect to the Server.
I had this running a few weeks ago on two different Digix boards, but the two I have now are bringing me no joy.
I've gone thru the DigiFi Tutorial instructions several times and my notebook & phone can see the setup site, and I've gone thru the setup a few times, making sure no security has been set up.
Still, when I run this code, and enter a letter into the Serial Monitor, all i get is: "Error connecting to network."
Hopefully someone will push me in the right direction & I'll get to move forward tomorrow while I'm @ work.
btw... exactly how do you insert a picture on these postings? I see the icon & when I click on it I get the :
"

" thing, but then what, I've tried dragging a JPG file inbetween the tags, and also copy/paste, but both procedures don't seem to work. I want to start documenting my posts more accurately.
thanks in advance,
Russ from Coral Springs, Fl.
/* rjh - this program runs - you must open the http site using the port extension
i.e in the chrome address use: 192.168.100.14:8080
this will bring you to the page that the server has created and
type in the message being sent. */
#include <DigiFi.h>
DigiFi wifi;
void setup()
{
Serial.begin(9600);
wifi.begin(9600);
//DigiX trick - since we are on serial over USB wait for character to be entered in serial terminal
while(!Serial.available()){
Serial.println("Enter any key to begin");
delay(1000);
} // End While
Serial.println("Starting");
while (wifi.ready() != 1)
{
Serial.println("Error connecting to network");
delay(5000);
} // End While
Serial.println("Connected to wifi!");
Serial.print("Server running at: ");
String address = wifi.server(8080);//sets up server and returns IP
Serial.println(address);
} //End Setup
void loop()...