Complatability issues.
Fwiss
Posts: 13
This question is fairly simple. Would the PS/2 breadboard thingy work with a BASIC Stamp II?
Comments
Do you mean the PS/2 to Breadboard Adapter as your thingy reference? The Parallax PS/2 to Breadboard Adapter·was designed·to·enable someone to·connect a PS/2 mouse or keyboard to breadboards, protoboards and perfboards with 0.1-inch hole spacing. It was initially intended for a PE Kit, but I dont see why it wouldn't be able to work with any controller that could control a DATA and CLOCK pin; which the BASIC Stamp 2 can do.
You can verify that what I'm talking about is the same PS/2 "thingy" you are refering to from·the link below,
PS/2 to Breadboard Adapter:
http://www.parallax.com/StoreSearchResults/tabid/768/txtSearch/PS2/List/0/SortField/4/ProductID/513/Default.aspx
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Respectfully,
Joshua Donelson
www.parallax.com
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
- Stephen
http://www.computer-engineering.org/ps2protocol/
BTW, I know that the propeller supports PS2 out of the box but what fun is that? [noparse]:)[/noparse]
Main:
golow:
PULSIN CLK, 0, time
IF time = 0 THEN golow
DEBUG "L",DEC time," "
gohigh:
PULSIN CLK, 1, time
IF time = 0 THEN gohigh
DEBUG "H",DEC time," "
GOTO MAIN
Now that I type this, I realize that I may be running into the observer effect where my DEBUG statement is taking too long and I am missing the other clock changes while that is going on! Does anyone know how long a debug statement takes to run? I'll instead increment a counter and debug at the end to see if that alters my result.