SPQR-Team-2019-REVAMPED/include/sensors/data_source_ball.h

24 lines
540 B
C
Raw Normal View History

2019-11-18 18:11:26 +01:00
#pragma once
#include "behaviour_control/data_source.h"
2021-05-07 21:39:03 +02:00
#include <Arduino.h>
#define MOUTH_MIN_ANGLE 350
#define MOUTH_MAX_ANGLE 10
#define MOUTH_DISTANCE 100
2021-05-07 21:39:03 +02:00
#define MOUTH_MAX_DISTANCE 140
2019-11-18 14:42:43 +01:00
class DataSourceBall : public DataSource
{
2019-11-18 14:42:43 +01:00
public:
DataSourceBall(HardwareSerial *ser, int baud);
void readSensor() override;
void postProcess() override;
void test() override;
bool isInMouth();
bool isInMouthMaxDistance();
bool isInFront();
int angle = 0, distance = 0, angleFix = 0;
bool ballSeen = false;
};