Parallax Serial Terminal - help
RobertW
Posts: 66
Hello,
I am using the Parallax Serial Terminal to display some values and would like to create some borders and/or for a simple idea, think of dividing the display into (4) quadrants, or areas. Looking at the character chart in the Propeller Tool, I see a vertical line (DEC: 145 HEX: $91), horizontal line (DEC: 144 HEX: $90), and some corner pieces(DEC: 156 HEX: $9C to DEC: 159 HEX: $9F), etc. Is there a way I can use these items to build a border on the screen? I am using the Parallax Serial Terminal object if that helps or hurts. Thank you for your help.
Thanks,
Rob
I am using the Parallax Serial Terminal to display some values and would like to create some borders and/or for a simple idea, think of dividing the display into (4) quadrants, or areas. Looking at the character chart in the Propeller Tool, I see a vertical line (DEC: 145 HEX: $91), horizontal line (DEC: 144 HEX: $90), and some corner pieces(DEC: 156 HEX: $9C to DEC: 159 HEX: $9F), etc. Is there a way I can use these items to build a border on the screen? I am using the Parallax Serial Terminal object if that helps or hurts. Thank you for your help.
Thanks,
Rob
Comments
Take a look at the HM55B Propeller Compass DEMO in the OBEX. Specifically the Serial version on how to set a specific position...
http://obex.parallax.com/object/273
Here is a code snip that works the same as the BS2 to set a specific cursor position in the Serial Debug window...
Thank you for your help. I understand needing to use the X-Y commands to fill in the screen. For example:
PST.Position(20,8)
PST.str(String("LED On"))
I am having trouble getting the characters themselves to display. Do I need to somehow use the decimal value, the hex value, neither, etc?
Thanks,
Rob
-Rob