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

13 lines
279 B
C
Raw Normal View History

2019-11-18 18:11:26 +01:00
#pragma once
2019-11-18 14:42:43 +01:00
#include "data_source.h"
class DataSourceBall : public DataSource{
public:
DataSourceBall(HardwareSerial* ser, int baud);
2019-11-18 14:42:43 +01:00
void postProcess() override;
void test() override;
2019-11-25 17:30:47 +01:00
2019-11-18 14:42:43 +01:00
int angle,distance;
bool ballSeen;
2019-11-27 17:17:18 +01:00
};