answersLogoWhite

0

The best way is to attach a serial port using device to the serial port of your computer and use your preferred program to send data to the device

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

How do you redirect a grep output in a file?

Use the > to redirect the output to a file. This will however override the existing content of the file. Use >> if you want to append the result.


How you redirect the output of the perl script into some file using perl script?

If the perl script outputs to the standard output device, use the I/O redirection operators (>, >>, |) to redirect it somewhere else.


What Windows shell script operator allows you to redirect the output of a command to a text file?

">" redirects all output to a file, overwriting any preexisting content.


Which command line tool displays an objects properties onscreen by default but can redirect output to a file?

DSGET


How can you make CMD send the ipconfig data to another computer without rewriting it?

Redirect the output to a file on the other computer.


How do you create a tee in unix?

The 'tee' command creates one for you automatically. You would use it to simultaneously look at output from a process and redirect it to a disk file (for example).


What is standard input and output error file?

The C standard library provides stderr as the standard error file. It is an output file, much like stdout, except it cannot be redirected via the command line. By default, error messages via stderr are output to the console, the same as the undirected stdout. However, the programmer may choose to redirect stderr to a disk file or allow the user to choose a location via command line switches. Although error messages can also be output to stdout (or indeed to any output stream), it is best to keep error messages separate from the standard output stream. For instance, the user may choose to redirect standard output to a disk file or to the input stream of another program, while error messages are directed to the console.


Where would one use the DIR applications?

DIR applications are commands. They redirect output and input streams. They are used in programming. DIR is an operator command that can be applied in specific coding situations.


Why doesn't wikiAnswers.com redirect to Answers.com?

wikianswers.com does redirect to www.wiki.answers.com.


What does it mean to redirect a child?

Well, To redirect a child it mostly will mean that you are trying to change it's actions and redirect its path


What are vertical line symbol in unix?

The vertical bar symbol - |. It is a pipe or redirect. It takes the output of one operation and pipes it to another command or program before outputting. See related link.


Which Linux symbols instructs the shell to redirect the shell to redirect the output of a command to the specified file instead of the screen?

It depends on the shell interpreter you are using, but in general the I/O redirection operators are >, >>, |.