Conversion

I tryed this:

ipAddr=Ethernet.localIP();

const char* ip_to_str(const uint8_t* ipAddr)
{
static char buf[16];
sprintf(buf, "%d.%d.%d.%d\0", ipAddr[0], ipAddr[1], ipAddr[2], ipAddr[3]);
return buf;
}

twitter.post(buf);

no luky

=(