first commit
This commit is contained in:
parent
c5c86b57df
commit
e37d77fd80
17 changed files with 1377 additions and 0 deletions
63
lib/pixy/examples/i2c/i2c.ino
Normal file
63
lib/pixy/examples/i2c/i2c.ino
Normal file
|
@ -0,0 +1,63 @@
|
|||
//
|
||||
// begin license header
|
||||
//
|
||||
// This file is part of Pixy CMUcam5 or "Pixy" for short
|
||||
//
|
||||
// All Pixy source code is provided under the terms of the
|
||||
// GNU General Public License v2 (http://www.gnu.org/licenses/gpl-2.0.html).
|
||||
// Those wishing to use Pixy source code, software and/or
|
||||
// technologies under different licensing terms should contact us at
|
||||
// cmucam@cs.cmu.edu. Such licensing terms are available for
|
||||
// all portions of the Pixy codebase presented here.
|
||||
//
|
||||
// end license header
|
||||
//
|
||||
// This sketch is like hello_world but uses I2C communications. If you're
|
||||
// not sure what I2C is, run the hello_world sketch!
|
||||
//
|
||||
|
||||
#include <Wire.h>
|
||||
#include <PixyI2C.h>
|
||||
|
||||
|
||||
PixyI2C pixy;
|
||||
// PixyI2C pixy(0x55); // You can set the I2C address through PixyI2C object
|
||||
|
||||
void setup()
|
||||
{
|
||||
Serial.begin(9600);
|
||||
Serial.print("Starting...\n");
|
||||
|
||||
pixy.init();
|
||||
}
|
||||
|
||||
|
||||
void loop()
|
||||
{
|
||||
static int i = 0;
|
||||
int j;
|
||||
uint16_t blocks;
|
||||
char buf[32];
|
||||
|
||||
blocks = pixy.getBlocks();
|
||||
|
||||
if (blocks)
|
||||
{
|
||||
i++;
|
||||
|
||||
// do this (print) every 50 frames because printing every
|
||||
// frame would bog down the Arduino
|
||||
if (i%50==0)
|
||||
{
|
||||
sprintf(buf, "Detected %d:\n", blocks);
|
||||
Serial.print(buf);
|
||||
for (j=0; j<blocks; j++)
|
||||
{
|
||||
sprintf(buf, " block %d: ", j);
|
||||
Serial.print(buf);
|
||||
pixy.blocks[j].print();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue