Hi, I have been trying to "talk" to arduino via serial from my e1000 telnet terminal but no luck. Please see attached the wiring. Here is the link to e1000 serial port http://www.dd-wrt.com/wiki/images/a/a3/E1000v2_serial.jpg
This is my arduino code
void setup() {
Serial.begin(115200);
}
void loop() {
while(Serial.available()) {
char incoming = Serial.read();
Serial.print(incoming);
}}
I am also not certain which is the right command from my router's telnet connection to arduino
I have been using this command:
echo hello arduino > /dev/tts/0
*telnet terminal connection to router works fine
*I can reach arduino serial from mac terminal
Any hint how to test/debug much appreciated!


