|
#pragma once
|
|
#include "behaviour_control/data_source.h"
|
|
|
|
class DataSourceBall : public DataSource{
|
|
|
|
public:
|
|
DataSourceBall(HardwareSerial* ser, int baud);
|
|
void postProcess() override;
|
|
void test() override;
|
|
|
|
int angle, distance, angleFix;
|
|
bool ballSeen;
|
|
};
|