Hi to all, It's possible to connect roku to Arduino with the rs232 port and sending messages from roku? I succeffully sent message from Arduino to roku with:
NewSoftSerial roku(19,18,true); ...into the loop... roku.print("A"); roku.print('\r'); But i need that roku send a Char when it plays a Video. I tried: while(roku.available()){ Serial.print"Roku sent:"); Serial.print((char)roku.read()); } But it doesn't works never. I also tried to connect the roku rs232 port to my pc and i successfully receive data in my putty terminal. Can you help me? Vanni ps: please is very urgent!