Hi everyone.
I am new to Arduino and the Pixy cam. I cannot get the pixy servos to work with the pixy cam and the connection between the pixy cam and my Arduino board do not work. I am using the cable that came with my camera. Any thoughts? I tried looking for a phone number for charmed labs but no success. Thanks
This is a sample code that I tried running
#include <SPI.h>
#include <Pixy.h>
Pixy pixy;
void setup(){
Serial.begin(9600);
pixy.init();
}
void loop(){
if (pixy.getBlocks()){
if (pixy.blocks[0].signature == 1);{
Serial.print(pixy.blocks[0].x);
Serial.print("\t");
Serial.print(pixy.blocks[0].y);
}
}
}