Wireless Boe-bot controller with LCD
FRC2370
Posts: 128
I am waiting on the 2-axis joystick and the 2 RF transceivers to arrive to make my boe-bot wireless, and i thought I'd add a DEBUG terminal screen to the base control board, but what code do I use to make the Serial LCD 2x16 act as the DEBUG terminal??
Comments
You have a great idea in using a LCD display as debug terminal. In order to write the code we need to know what Boe Bot that you have. So, do you have a Propeller or a Basic Stamp Boe Bot?
Like DEBUG, there are cursor positioning commands that can be sent to the LCD to control the formatting.
Here is a program I made several years ago to use with the Parallax 2x16 back lit display.
DEBUG "Message Here"
SEROUT Pin, Baudrate, ["Message Here"]
If the LCD is set to 9600 and connected to pin 8 on a Basic Stamp 2, then it would look like this:
SEROUT 8, 84, ["Message Here"]