In a bit of code I have this command:
Serial.println("");
Serial.println("=================");
Serial.println("WiFi connected");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
Serial.println("=================");
Nice.
I want to access this "WiFi.localIP()" and put it in to (I think they are called arrays) for instance:
message[]
I'm reading but as I am not having any luck.
I have some code already written and it takes it's input from that kind of variable.
So I can either re-write my routine to accept what that command gives, or change it from what it gives to be stored in "message[]".
The array is a bit nicer because I can step through and look at each letter/character individually.