hello all i had this figured out at one time but i cant seem to find it but i have this small peace of code
for(char i=0x010;i>=0x0FF;i++){
Send_DIRECT_CODE_To_Sony(i); //End Tv Send Code
Serial.println(i);
delay(delay_time);
}
basically i want to start at 0x010 and end at 0x0FF
and display the full hex value in the serial console i has to = something like 0x010 no 10 that is what is saying now
that way it sends the hex code to the rest of the code but that part isnt important lets get serial write to work first