I need to send some information from my PC to an Arduino. I tested it with PuTTY and it works great.
I need to send characters, '1' or '2', to control a servo and I am using these commands:
mode com10:9600,n,8,1
... and I see that my Arduino received some data.
After that, I try to use that:
echo 1>com10
OR
echo "1">com10
and nothing nothing happens.
With PuTTY it works corrent and turning, when I press 1 or 2. With the Arduino serial monitor it works great too.