14 lines
239 B
C++
14 lines
239 B
C++
#pragma once
|
|
|
|
#include "BaseDataSource.h"
|
|
|
|
class DemoDataSource final : public BaseDataSource {
|
|
public:
|
|
DemoDataSource();
|
|
~DemoDataSource();
|
|
|
|
void poll() override;
|
|
void bump_brake_balance_up();
|
|
void bump_brake_balance_down();
|
|
};
|