Boe Bot code needed
Im building a wirelessly operated Boe-Bot over the coming week, and I was thinking of having a Parallax Serial LCD 2x16 on the Board of Education with the joystick to act as a DEBUG terminal for it. Can someone help with a program to make the display run as the DEBUG terminal?
Comments
Board of Education
BS2 microcontroller
Serial LCD 2x16 connected to Vdd 15
Parts to go on upon arrival:
BS2E microcontroller
2-Axis joystick to be installed on the breadboard
Welcome.bs2
You keep mentioning "DEBUG terminal". There is no DEBUG terminal. There are just serial displays. The PC's Stamp Editor debug window is just a serial display that happens to be attached via I/O port 16 (a special case) and the DEBUG and DEBUGIN statements are special versions of the SEROUT and SERIN statements that work with I/O port 16 only and only at a specific Baud (9600 in your case). You can attach other serial terminals, like the LCD, to other I/O pins and use the SEROUT statement to do the same things. The SEROUT statement requires that you specify an I/O pin number and a Baud code and the data to be displayed is written a little differently, mostly because the SEROUT statement allows more kinds of items to be sent.