Shop
OBEX
P1 Docs
P2 Docs
Learn
Events
Stamp Plot Lite question — Parallax Forums
toggle menu
Categories
Discussions
Sign In
·
Register
Sign In
·
Register
Categories
Discussions
Sign In
·
Register
×
Home
›
BASIC Stamp
Stamp Plot Lite question
OSOK
Posts:
35
2007-06-29 16:00
edited 2007-06-30 01:49
in
BASIC Stamp
Is it possible to display the value of variable X on the lower box of Stamp Plot Lite at the same time that variable Y is getting graphed?
Thanks!
Comments
Martin Hebel
Posts:
1,239
2007-06-29 18:16
edited 2007-06-29 18:16
You can either have it display the value in the "User Status" text box using this code:
DEBUG "!USRS X = ", DEC X, CR
-Martin
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
StampPlot - GUI and Plotting, and XBee Wireless Adapters
Southern Illinois University Carbondale, Electronic Systems Technologies
Martin Hebel
Posts:
1,239
2007-06-29 18:17
edited 2007-06-29 18:17
Ok, you asked about the lower box - the message list box:
DEBUG "Value of X is: ", DEC X, CR
Sorry,
-Martin
·
OSOK
Posts:
35
2007-06-29 23:01
edited 2007-06-29 23:01
Thank you Martin!
Now, I'm trying to graph two separate points, but they appear connected. For example, 1 and 10.
Is this possible, or is the only way to have more than one line being graphed is using the PIN states?
Post Edited (OSOK) : 6/29/2007 11:07:37 PM GMT
Martin Hebel
Posts:
1,239
2007-06-30 01:27
edited 2007-06-30 01:27
Lite only supports 1 analog plot. Download Pro, all your code will still work, and it's free for home/educ use. For 2 channel plotting (separate by commas):
DEBUG DEC x, ",", DEC y, CR
http://www.stampplot.com
-Martin
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
StampPlot - GUI and Plotting, and XBee Wireless Adapters
Southern Illinois University Carbondale, Electronic Systems Technologies
OSOK
Posts:
35
2007-06-30 01:49
edited 2007-06-30 01:49
Thanks a ton!!
Sign In
or
Register
to comment.
Comments
DEBUG "!USRS X = ", DEC X, CR
-Martin
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
StampPlot - GUI and Plotting, and XBee Wireless Adapters
Southern Illinois University Carbondale, Electronic Systems Technologies
DEBUG "Value of X is: ", DEC X, CR
Sorry,
-Martin
·
Now, I'm trying to graph two separate points, but they appear connected. For example, 1 and 10.
Is this possible, or is the only way to have more than one line being graphed is using the PIN states?
Post Edited (OSOK) : 6/29/2007 11:07:37 PM GMT
DEBUG DEC x, ",", DEC y, CR
http://www.stampplot.com
-Martin
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
StampPlot - GUI and Plotting, and XBee Wireless Adapters
Southern Illinois University Carbondale, Electronic Systems Technologies