IOIO (pronounced: yo-yo) is a product which lets you connect electronic circuits to an Android device and control them from an Android application.

learn more… | top users | synonyms

0
votes
0answers
49 views

Why do I get “libcore.io.ErrnoException: open failed: ENOENT” when running a IOIO Mint application?

I'm trying to make a simple application, which runs on an Android device (Alcatel One Touch 4030D, Android 4.1.1) and reads data from analog input pins of IOIO Mint via BlueTooth. I'm getting the ...
0
votes
0answers
18 views

Using locationListener with IOIO

I'm trying to create an app that take GPS coordinates from the inbuilt system and output it via an IOIO board (just a board that allows the phone to have digital and analogue output) so that it can be ...
-5
votes
1answer
37 views

Servo Motor Control using IOIO board [closed]

How to control Servo Motor with Android using IOIO board? What is the android code behind it and what kind of input is required?
1
vote
0answers
49 views

android ioio open accessory doesn't work, while adb works

I'm able to get my application working when I have USB debugging on. But when I turn of debugging so I can use open accessory, the application doesn't work. What happends is that when I connect the ...
-5
votes
1answer
125 views

whats wrong with my if condition within loop? [closed]

I am programming a toy , works from java behind , i get in to a problem, in the if condition i will explain my code below Update: The Problem is detected on my debugging the code is : int ...
0
votes
0answers
59 views

Using IOIO board to get analog outputs without using Android device

I am testing the ADC on the IOIO board and was wondering if I need to code with Android or if I can just use Java and have the analog output readings display on the Eclipse console. Thanks!
1
vote
0answers
149 views

ioio Code LCD JHD162A cannot initialize

ASKING HERE AFTER A HOMEWORK OF ABOUT 5 HRS,SO AVOID TOP SEARCH REFERENCES FROM GOOGLE i am trying to connect LCD JHD162A to ioio V1 but LCD don't initialize, it shows a single row blackboxes,ON ...
0
votes
0answers
40 views

Pass Array values from Swing UI to a IOIO Class to actuate servos

I have a working SwingUI class with values from that UI saved to an Array. I have a separate class that works with the IOIO to drive servos. I would like to pass (or is it retrieve) the array values ...
1
vote
1answer
91 views

Connect IOIO Bridge with android_x86 in Virtualbox

Situation: Connecting IOIO Bridge to android_x86 in Virtualbox *adb connected to 10.10.10.3:5555 (where 10.10.10.3 is VBox)* adb forward tcp:4545 tcp:5555 java -jar ioiobridge.jar COM3 The ...
3
votes
0answers
123 views

Starting a new Activity error

I am creating an application that reads in data from a IOIO microcontroller board and displays it to the screen after I hit a button. I have two classes, MainActivity, which has the button to hit, ...
1
vote
0answers
182 views

using button to control ioio led light [closed]

I'm a beginner with ioio and Android. I was working on a code that turns led light on when pressing a button and turns the light off when releasing the button. This is my code, it has no errors but ...
1
vote
1answer
97 views

IOIO not connecting to PC, “waiting for handshake”

I, as well as many others, have had a problem with the IOIO OTG connecting with the PC, when building from eclipse. We are using the ADT version of eclipse, with all libraries properly imported. When ...
1
vote
0answers
446 views

Android - IOIO -Stepper Motor control - Should I use a Service … if so how to implement?

I am having some trouble with controlling a stepper motor using a IOIO board. I started with the HelloIOIOPower example and added my code. The program will run and turn on/off the LED when the ...
0
votes
1answer
200 views

ioio.waitForConnect() throwing ConnectionLostException

I am attempting to use the IOIO board with a Galaxy SIII. I have already successfully been able to run the HelloIOIO program. I am not sure why this program fails so spectacularly. From the console ...
0
votes
0answers
109 views

I want to Pass IOIO Pin State Value to another Activity?

Kindly help me here, how can I Send or Pass the value of IOIO Pin/TextView(mValueTextView) to another activity with in the same project. public class MainActivity extends AbstractIOIOActivity { ...
1
vote
0answers
62 views

Checking Frequency of Pulse, zero pulse case Android

I have a sensor that is measuring wind speed. For zero wind it outputs 0V (LOW) and has no pulse. However it outputs pulses (HIGH) for any speed greater then 0.3m/s. I am trying to write some code to ...
0
votes
2answers
3k views

Android - IOIO board , simple UART code issue

I am using the IOIO board given by sparkfun. While trying to test UART , I tied the RX and TX of the IOIO board and wanted to send one byte from the phone and receive same byte on the Phone ans show ...