SparkFun Forums 

Where electronics enthusiasts find answers.

Have a good idea for a new product for SFE or Olimex? Let us know!
By Inopia
#115666
USB host shield is nice, but I'd prefer an integrated USB host microcontrolller board. Micropendous is very nice, but isn't produced in large quantities, so it might be perfect for SparkFun:

http://code.google.com/p/micropendous/

Also FTDI also has the Vinculo board, which is kinda hard to find online:

http://www.ftdichip.com/Products/Module ... odules.htm

If someone is willing to design something from scratch, there's the PIC24F32GB002 micro which has USB otg/host support and comes in a DIP package. A hand-solderable breakout board would be a nice and most of all cheap solution.

http://www.microchip.com/wwwproducts/De ... e=en536120
By mcuaust
#116107
What would "an integrated USB host microcontrolller board" allow you/us to do?.
By Inopia
#116142
@mcuaust: USB stands for 'universal serial bus' :) There's loads of stuff you can connect over it but most importantly, it's a standard used in commodity devices. So instead of getting an expensive $30 bluetooth-serial bridge you might be able to get a $3 dongle from DX and use that instead:

http://www.circuitsathome.com/mcu/ps3-a ... eld-part-1

Other things I can name from the top of my head are input methods such as mice and keyboards (HID), storage, and webcams.
By mcuaust
#116173
Hi Inopia,

I am familiar with USB.
My question related to what your suggested part could do that can not currently be done with say an Arduino.
By Inopia
#116181
@mcuaust: the reason Arduino is popular I think, is that it's a bit like a swiss army knife. It has loads of I/O such as GPIOs with input capture and PWM, I2C, SPI, UART, ADCs, etc. The fact that you can pretty much hook anything up to it is a big advantage. To me, adding USB to the list just seems like a natural progression of that idea.

USB has several benefits over other connections. It's bi-directional and asynchronous, and you can connect multiple devices to one host - possibly using a hub - which saves on pins. And like I've said, there's a lot of inexpensive commodity devices that connect over USB. Right now many of us are using expensive low-volume GPS modules instead of cheap USB dongles like http://www.dealextreme.com/details.dx/sku.37137. There's also code available for low-cost bluetooth through a dongle like http://www.dealextreme.com/details.dx/sku.11866. Mass storage allows you to easily add gigs of storage to your project for say, logging purposes.

So to come back to your question, USB has the benefit of a) allowing us to talk to cheap commodity devices, b) have multiple devices on a single bus, c) easy to program.
By mcuaust
#116183
Inopia,

thanks for all of that. I'm still trying to understand what your suggested "integrated USB host microcontrolller board" will provide as opposed to an Arduino with built-in USB.

By the way, apparently the new Arduino Uno can hook up to a PC using USB without any drivers required.
By Inopia
#116186
@mcuaust: the UNO's chip only supports USB slave, so it can connect to a host (i.e. your PC), but you cannot connect slave devices to it.
By mcuaust
#116215
Inopia, do you have some usage examples for "slave" devices you would want to connect to that host controller, and what they are used for?.
By jcwoltz
#116474
mcuaust wrote:Inopia, do you have some usage examples for "slave" devices you would want to connect to that host controller, and what they are used for?.
@mcuaust, Inopia already said a few examples would be to use a cheap gps or bluetooth donlge. Inopia wants to be able to plug devices into an arduino, that would normally be plugged into a computer. Although arduino has usb on it, it is a usb device, not a usb host. For example you cannot plug a usb mouse into an arduino right now. You have to have some type of microcontroller that is a usb host to do that. That is what Inopia is looking for.
By jcwoltz
#116540
mcuaust wrote:Thanks jcwoltz.

I wasn't hassling him, I'm just trying to understand.
Sorry If I came off like that. Reading it now sounds harsh. That wasn't my intention.