Hi I want to send some command to my device which is connected via serial port. How to send it?
For example i found this on google search but for me it's useless.
Control + E is a keyboard shortcut for 5, so:
serial.Write(new byte[]{ 5 }, 0, 1);
Hi I want to send some command to my device which is connected via serial port. How to send it?
For example i found this on google search but for me it's useless.
Control + E is a keyboard shortcut for 5, so:
serial.Write(new byte[]{ 5 }, 0, 1);
You need send the commands CR (Carriage Return) and LF (Line Feed, or new line).
For this is just to send your command plus the the CR and LF like this:
\r\n = CR + LF -> Used as a new line character in Windows
I appended "\r\n" in string and call Write() method and it works for me. For Example,
serial.Write("abcd\r\n");
To send the enter key, you would have to use
Assuming your syntax for Control + E is correct. The enter key is interpreted and usually saved in a file as
CR-LF
. However, depending on your device, it may only requireCR=13
, orLF=10
. You should try all 3 combinations with your device to see what it expects.If you are looking for the actual scan code of the enter key, it's "43" on a PC 102/104 key keyboard. Depending on the actually computer you are using, it may be different. For instance on a Commodore 64 the scan code for the Return key is "1", which has the equivalent use of Enter on a PC keyboard.
It depends on what is ENTER for your device. In Windows it is CRLF (13 and then 10), Linux is LF (only 10.) It's just a matter of what your device expects, because it can't see ENTER, just "byte 10, byte 13, byte whatever..."
What the previous answers have told you is how to send a NEWLINE character - this is not the same as "the enter key". If what you want to do is to actually indicate to the remote machine that the "enter key" on the keyboard has been pressed, that is entirely different, and may not be possible, depending on your operating system and hardware.
Thanks guys.
This works:
Note: if you want to send a command through serial port, I use the line below works for me.