Hi I am trying to create a program that when it catches a object that is at the center of the picture that the arduino performs a task.
```
if (pixy.ccc.blocks[0].m_x - 160 == true )
{
digitalWrite(3, HIGH);
}
else{
digitalWrite(3, LOW);
}
```