Shop OBEX P1 Docs P2 Docs Learn Events
Parallax Serial Terminal — Parallax Forums

Parallax Serial Terminal

Other than the source code for PST, is there a "manual" or cheat sheet on how to use the PST ?? Looking into the source code for what it can and cannot do each time is distracting from the task at hand.

I've looked around and haven't located any documentation. Any help ??

Mike B.

Comments

  • There's really no manual, but all of the control codes available can be found in one of the tabs. I have those as constants in my version of FullDuplexSerial because that's what I use for PST output.
    con { pst formatting }
    
      HOME    =  1
      GOTOXY  =  2
      CRSR_LF =  3
      CRSR_RT =  4
      CRSR_UP =  5
      CRSR_DN =  6
      BELL    =  7
      BKSP    =  8
      TAB     =  9
      LF      = 10
      CLREOL  = 11
      CLRDN   = 12
      CR      = 13
      GOTOX   = 14
      GOTOY   = 15
      CLS     = 16
    
  • Thanks Jon:

    Mike B.
  • AribaAriba Posts: 2,690
    Good Spin objects have the documentation embedded in the source code with '' and {{ }} comments.
    To get the documentation load the object in the PropTool and click on "Documentation" above the source text.

    Andy
Sign In or Register to comment.