I able to send a text to COM1 by using
serialPort1.Write("Hello World");
but how to clear all the displayed text and start a new text? Im using VFD-800 🙂
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Page 30 of the manual you’ve linked to contains a command of CLR which will “clear display screen and clear string mode”.
To do this you need to send Hex code 0C.
A link on how to send hex codes down a serial line:
http://www.codeguru.com/forum/showthread.php?t=509359
You’ll also want to look up the other codes you’ll probably need like positioning your cursor.