Hi guys one more time.
I have a question and I hope you can help me.
I configured the WINC1500 module to work as Provision Mode. So far so good the phone detects the module, I connect my phone to the module and it asks me to sign in. It opens the provision webpage and I put the data of the router which I want to sign in.
Now what I want is a condition in my program so my program only executes if the module winc1500 is connected to a router. I want something like this.
while (winc1500 is not connect to router)
{
printf("Waiting connection");
}
if (winc1500 connected)
{
//execute the program
}
My problem is I don't know which variable(s) is/are changed after I connect to a router.
Hope you can help me.
Thanks for your attention