Propeller chip/other microcontrollers
Adam Brooks
Posts: 5
Hello,
I am currently working on a new design for a prosthetic hand and am looking for a good microcontroller. I need to be able to read analog signals thermal and pressure sensors on the device as well as provide 4-8 PWMs simultaneously. Would this be the best microcontroller to use considering the different COGs and is it possible to work with you guys to develop a smaller form factor board after the first prototype is tested.
Thanks,
Adam Brooks
I am currently working on a new design for a prosthetic hand and am looking for a good microcontroller. I need to be able to read analog signals thermal and pressure sensors on the device as well as provide 4-8 PWMs simultaneously. Would this be the best microcontroller to use considering the different COGs and is it possible to work with you guys to develop a smaller form factor board after the first prototype is tested.
Thanks,
Adam Brooks
Comments
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Leon Heller
Amateur radio callsign: G1HSM
Post Edited (Leon) : 4/30/2010 3:08:05 AM GMT
http://forums.parallax.com/showthread.php?p=901459
BTW, welcome to the Propeller forum
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
*Peter*
Please post more of the project details and other forum members should be able to help out.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Nyamekye,
8PWM + 8 Analog would still leave 4 pins free.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Lots of propeller based products in stock at affordable prices.
propmodule.com will be closed May 1-10th. Orders made in that time will be shipped on the 11th.
The built-in ADC function uses one of the two identical counters in each cog, so you'd have to devote one cog for each pair of ADCs with the cog's processor doing some of the work. Each ADC channel also requires two I/O pins, two resistors, and two capacitors mounted close to the processor's I/O pins. Look at the SpinStamp pictures to get an idea of how small you could package the Propeller along with its crystal, EEPROM and voltage regulator. It all fits on a 24-pin DIP module. www.parallax.com/StoreSearchResults/tabid/768/List/0/SortField/4/ProductID/448/Default.aspx?txtSearch=spin+stamp
There's also the PropStick which uses a 40-pin DIP module which brings out all the I/O pins and includes a USB programming interface that can be used for ordinary serial communications as well. www.parallax.com/StoreSearchResults/tabid/768/txtSearch/propstick/List/0/SortField/4/ProductID/411/Default.aspx
Post Edited (Mike Green) : 4/30/2010 3:14:12 AM GMT
-Phil
Thanks,
Adam Brooks
I have a propplug in stock also. if you need it just add $15 worth of blank pcbs and write me a note that you want the adapter.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Lots of propeller based products in stock at affordable prices.
propmodule.com will be closed May 1-10th. Orders made in that time will be shipped on the 11th.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Lots of propeller based products in stock at affordable prices.
propmodule.com will be closed May 1-10th. Orders made in that time will be shipped on the 11th.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
*Peter*
Some ADC objects (such as MCP3208_fast) tie the DI and DO together, so its really 3 pins per 8ch ADC. With some effort it should be possible to common up the CS's, perhaps even the clocks, to get down to 4 pins for 16 channels at 50kHz.
I only mention this in case the OP is tight on pins...
Depending on accuracy requirements and sensor configuration, then writing your own assembler ADC and not using the internal counters, you can get a nice 12 bit Sigma Delta to work very well with only a single pin, and the software is simpler than serial communications to a external device..... none required!
Cheers,
Peter (pjv)