BASIC Stamp Video Output
Phil Pilgrim (PhiPi)
Posts: 23,514
Parallax has announced the Propeller Backpack, which comes ready to deploy out-of-the-box as a video character terminal for your BASIC Stamp applications. Without doing any Propeller programming, this tiny module gives you windowed, multi-color, programmable-size character output to any NTSC video monitor. Here's what a typical setup might look like:
The video output comes from the center pin of a 1/8" stereo phone jack. Various phone-to-RCA adapters are available (e.g. RadioShack #274-897) for easy interfacing to a video monitor.
Here's a typical PBASIC program for displaying "Hello, world!":
And here is what the output looks like:
It's also possible to upload canned Propeller software to the Propeller Backpack via your BASIC Stamp and the same 3-pin connection, as well as to write your own Propeller programs for it, should you choose to do so.
-Phil
The video output comes from the center pin of a 1/8" stereo phone jack. Various phone-to-RCA adapters are available (e.g. RadioShack #274-897) for easy interfacing to a video monitor.
Here's a typical PBASIC program for displaying "Hello, world!":
' {$STAMP BS2} ' {$PBASIC 2.5} io PIN 15 'Propeller Backpack pin number. baud CON 84 | 32768 '9600 baud OPEN. LOW io 'Reset the Propeller Backpack PAUSE 500 INPUT io PAUSE 2000 'Wait for it to come out of reset. SEROUT io, baud, [noparse][[/noparse]"Hello, world!"]
And here is what the output looks like:
It's also possible to upload canned Propeller software to the Propeller Backpack via your BASIC Stamp and the same 3-pin connection, as well as to write your own Propeller programs for it, should you choose to do so.
-Phil
Comments
FWIW, I still love the SX Module's Commodore 64-type graphics! [noparse]:)[/noparse]
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
·"If you build it, they will come."
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
If you convince yourself that something is impossible before you even try; you are sure to prove yourself right.
http://www.parallax.com/StoreSearchResults/tabid/768/txtSearch/backpack/List/0/SortFied/4/ProductID/602/Default.aspx
If you have any questions about the documentation, please ask.
Jim
-Phil
I want to use the BS2P40 to control my interface board and the Propeller Backpack. The Propeller Backpack can display the info I need to the TV display.
I also want to interface the BS2P40 to some 74ls logic and I think the 74hct logic chips will do this, am I right.
Best regards
Allie
Regarding your logic chip question, the answer is "yes", but that's really a topic for a new thread.
-Phil
Best regards
Allie
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
"When the government is afraid of the people there is liberty, when the people are afraid of the government, there is tryanny"
· Thomas Jefferson
·
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
"When the government is afraid of the people there is liberty, when the people are afraid of the government, there is tryanny"
· Thomas Jefferson
·
Allie,
Yes, you could do that with a keyboard. You would not even need a separate 3-pin connector for the keyboard input to the Stamp. Your top-level Spin program could be configured to accept and translate commands via the single three-pin connector provided, such that some would be directed to the video and some would poll for keyboard input.
-Phil