Arduino 101 question

Hello,

Recently I have a Arduino 101. I would like to connect it with my USB host shield. Unfortunately that didnt work. This is because the Arduino 101 uses other port pins as the Uno.

Does anyone know the pin out of the 101?
Does anyone know a USB host library for the 101?

Thank for the comments!

Dominique

It looks like the SPI pins are in all the right places, but you'll need an implementation of the USB Host shield that doesn't "drop down" to using AVR-specific SPI calls. It looks like the usb host library is pretty full of very cpu-specific code - are you just getting a "#error "Please define board in avrpins.h"" error at compile time?

Yes I got the message but than I found this:

https://forum.arduino.cc/index.php?topic=387359.0

Now i dont get that message any more. But i get the following message:

C:\Program Files (x86)\Arduino\libraries\USB_Host_Shield/usbhost.h:101:2: error: #error "No SPI entry in usbhost.h"

#error "No SPI entry in usbhost.h"

So i have to define the SPI pins in usbhost.h. I believe i can find the pins here:

By U12F you can find MOSI,MISO, SCK and SS I think the port pins are F4,G3,E4 and F3
you think I'm right? Or am I completely wrong there :slight_smile: