<< return to Pixycam.com

Connection Pixy to ArduinoRobot via I2C

I am using the Arduino Robot. I would like to connect the cmucam pixy via I2C with the Robot. I tried the example arduino_pixy but it doesn’t work. I think I have to use different commands for the ArduinoRobot than for the other Arduinos ?! Does anyone has experience in programming ArduinoRobot.

Hi Robin,

Have you made any progress on this? Which Arduino example did you try? We don’t have one named arduino_pixy.

Scott

HI

I tried the i2c.ino example from your files in the folder:

“arduino_pixy-0.1.5.zip\Pixy\examples\i2c”

I added:

#include < ArduinoRobot.h >
void setup() {
// initialize the robot
Robot.begin();
// initialize the robot’s screen
Robot.beginTFT();

and changed the
“Serial.print(value)”- command into "Robot.text(value);

Robin