Shop OBEX P1 Docs P2 Docs Learn Events
Program to Display data on screen — Parallax Forums

Program to Display data on screen

PhilldapillPhilldapill Posts: 1,283
edited 2009-05-24 17:44 in Propeller 1
What's this program called? I've never gotten around to using it, but since I am without a TV or other output device, I think I might try it. The program I'm speaking of allows you to display data from the Propeller on the screen. No, not ViewPort, although I salivate at the thought of having that.

Anyone know what I am thinking of? It's a console-like program...

Comments

  • W9GFOW9GFO Posts: 4,010
    edited 2009-05-23 23:55
    PST Prop serial terminal?

    Rich H
  • Mike HuseltonMike Huselton Posts: 746
    edited 2009-05-23 23:56
    What screen? PropAlyzer?

    ▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
    JMH
  • PhilldapillPhilldapill Posts: 1,283
    edited 2009-05-24 00:04
    Rich, I think that's the one. However, how do you use it? What object transmits to the program?
  • Mike HuseltonMike Huselton Posts: 746
    edited 2009-05-24 00:07
    Serial Objects.

    ▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
    JMH
  • W9GFOW9GFO Posts: 4,010
    edited 2009-05-24 00:13
    I use FullDuplexSerial to transmit to BST's serial terminal.

    Rich H
  • SRLMSRLM Posts: 5,045
    edited 2009-05-24 01:53
    I like to use FullDuplexSerialPlus for transmitting to a terminal (via prop-plug). Here is the parallax serial terminal download link: http://www.parallax.com/tabid/442/Default.aspx

    You have to have a crystal to use it. Here is some sample code.
    CON
      _xinfreq = 5_000_000                      
      _clkmode = xtal1 | pll16x
    OBJ
      debug  : "FullDuplexSerialPlus"
    PUB Main
      debug.Start(31, 30, 0, 57600) 
      waitcnt(clkfreq*6 + cnt) 'wait for you to switch over to the parallax serial terminal
      repeat
        debug.str(string("Hello World!"))
        debug.tx(13)                'CR
        waitcnt(clkfreq + cnt)
      
    
    

    Post Edited (SRLM) : 5/24/2009 2:02:06 AM GMT
  • W9GFOW9GFO Posts: 4,010
    edited 2009-05-24 02:02
    SRLM said...

    
      waitcnt(clkfreq*6 + cnt) 'wait for you to switch over to the parallax serial terminal
     
    
    


    Cool thing about BST (on a Mac anyway), you can skip that line - no need to switch over. It happens automatically.

    Rich H
  • heaterheater Posts: 3,370
    edited 2009-05-24 17:44
    How about Ariba's PropTerminal. Plays well with the Prop Tool and does colour text and limited graphics. Also has a file download mode.

    http://forums.parallax.com/showthread.php?p=649540

    Edit: Also handle mouse events I believe

    ▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
    For me, the past is not over yet.
Sign In or Register to comment.