IPAddress IPfromBytes missing?

Hello All,

I was having trouble with using IPfromBytes. The compiler was saying it could not find IPfromBytes in the scope. So i has a look through the firmware and I could only find IPfromBytes documented in the the firmware/reference.

I ended up using,
IPAddress localIP;
localIP.set_ipv4(121,214,62,247);
which is not documented in the online API.

Anything I’m missing here?

Thankyou

Hayden

Why not use

IPAddress localIP( {121,214,62,247} );
1 Like