-
Notifications
You must be signed in to change notification settings - Fork 1
API
lennedy edited this page Jul 9, 2018
·
10 revisions
void configurar(bool habilitar_garra=true);
void habilitaTCS34();
void habilitaTCS23();
int lerSensorDeLinha(int sensor);
float lerSensorLinhaEsq();
float lerSensorLinhaDir();
HSV getHSVEsquerdo();
RGB getRGBEsquerdo();
HSV getHSVDireito();
RGB getRGBDireito();
float lerSensorSonarLateral();
float lerSensorSonarFrontal();
void acionarMotores(float percetualMotorEsquerdo, float percetualMotorDireito);
void acionarServoGarra1(float angulo);
void acionarServoGarra2(float angulo);
struct RGB{
int verde;
int vermelho;
int azul;
};
struct HSV{
float h;
float s;
float v;
};