I'm trying to make a project using the arduino ADK board http://arduino.cc/en/Main/ArduinoBoardADK and a Sony Ericsson Xperia Play running android 2.3.4. For starters all I want to do is blink a led from my android device, using the nice tutorial found here http://allaboutee.com/2011/12/31/arduino-adk-board-blink-an-led-with-your-phone-code-and-explanation/ .I managed to compile the android app but I'm having big difficulties on the arduino sketch, I can't resolve the imports and it won't compile on Windows7. I understand there are some arduino IDE version issues. I tried compiling both on 0022, 0023 and on 1.0. The furthest I could go with the code I was getting these compile errors after editing the AndroidAccessory.h:

D:\arduino-0023\libraries\AndroidAccessory/AndroidAccessory.h:37: error: 'EP_RECORD' does not name a type

D:\arduino-0023\libraries\AndroidAccessory/AndroidAccessory.h:50: error: 'EP_RECORD' has not been declared

D:\arduino-0023\libraries\AndroidAccessory/AndroidAccessory.h:50: error: 'EP_RECORD' has not been declared

D:\arduino-0023\libraries\AndroidAccessory/AndroidAccessory.h:64: error: 'USB_NAK_LIMIT' was not declared in this scope

I think I read the whole documentation and I can't find a solution to my problem. Setting this up is such a pain... I really need to make this work. Thank you in advance! :)

---------------------------------------------------------------------------------------------------------------------------

The solution which worked for me was to compile the sketch on Linux (Ubuntu)

link|improve this question

feedback

4 Answers

up vote 3 down vote accepted
+50

The library was written and tested in:

Arduino Alpha 0022

Have you tried adding this to ArduinoAccessory.h?

#if defined(ARDUINO) && ARDUINO >= 100
  #include "Arduino.h"
#else
  #include "WProgram.h"
#endif 

Also I would recommend reading through this as well:

http://developer.android.com/guide/topics/usb/adk.html#installing

It specifically mentions you need the CapSense library as well for the Android shield on an Arduino:

http://www.arduino.cc/playground/Main/CapSense

It also mentions that you need to install avr-libc as well:

sudo apt-get install avr-libc

MAC OS X:

fink install avr-libc avr-gcc avr-binutils avrdude 
link|improve this answer
1  
yes I did :( this small header edit got me this far but still left me with the errors you see above... – Marci Căşvan Jan 30 at 9:35
1  
Well I also tried it on version 0022 and I get the same error... I don't understand what I am doing wrong... – Marci Căşvan Jan 30 at 18:43
1  
@MarciCăşvan See my updated answer for a link to documentation on installing the necessary libraries. – Fulvio Feb 6 at 9:15
1  
@MarciCăşvan Are you adding my above code to ArduinoAccessory.h? Also try including #include <Usb.h> in your sketch as well. – Fulvio Feb 6 at 9:50
2  
@MarciCăşvan I know it may be a pain. However, I'm having no problems whatsoever on a Mac OS X Lion environment an an Ubuntu 11.10 environment. Could you consider installing one of those operating systems? – Fulvio Feb 6 at 10:28
show 4 more comments
feedback

Sounds to me like you're just missing the USB_Host_Shield/Usb.h header, which defines those constants.

link|improve this answer
I did import the USB_Host_Shield and USB libraries too...There has to be a library version conflict somewhere... I'll double check – Marci Căşvan Feb 9 at 13:07
1  
@MarciCăşvan I think that's definitely where your problem lies. Something is preventing that header from being included properly. – Zenexer Feb 9 at 13:55
Its not working out for me I give up – Marci Căşvan Feb 10 at 18:28
feedback

EP_RECORD is defined as part of the USB Host Shield 1.0. However, it is being removed in USB Host Shield 2.0 library.

See the announcement here: http://www.circuitsathome.com/mcu/usb-host-shield-library-version-2-0-released

So the error messages you have with EP_RECORD will surface again if you ever upgrade to 2.0. Also check out the adk.h and adk.cpp from version 2.0 on GitHub. The updated DemoKit 2.0 example no longer use the AndroidAccessory.h/.cpp.

link|improve this answer
I will definitely check this and if I succeed I'll mark your answer :) thanks – Marci Căşvan Mar 26 at 7:27
feedback

This sounds kind of like a issue I had a while ago. (so I used microbridge not the ADK with a USBDroid) I had to go into 3 libraries, The error message pointed me to them

//(Note:Which were copied into the the general arduino sketch folder not the arduino normal libraries location) That may be your issue?)

I then replace wiring.h with Arduino.h in each.(Note Make a backup of all to save some stuffing around if this is not your issue) Copy then into a folder named the same but with a number before the name that way when you restart the arduino software you will get a error ignore this and compile.

The result was working USBdroid as seen at http://www.youtube.com/watch?v=h7aa_6PNdRI Still a Work in progress but made me happy. I still have a few buggs to work out.

Cheers, Al

link|improve this answer
I copied the libs into the /libraries folder as mentioned in the documentation – Marci Căşvan Feb 6 at 12:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.