Hi, I have the Dum. and Eth Shield. I am trying to be able to read and print the ip, gw, and subnet info to a telnet session, however I am new to the whole byte, string, char business and am unsure as to how to actually print the values. for instance i have
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
byte ip[] = { 192,168,1, 250 };
byte gateway[] = {192,168,1,1};
byte subnet[] = {255,255,255,0};
i've tried something like a telnet.println(ip) but it gives me an "(byte[4]) is ambiguous error. what kind of syntax should I be using? also, would I be able to change the ip value from a telnet.read();?
thanks