mirror of
https://github.com/azaion/autopilot.git
synced 2026-04-22 12:46:34 +00:00
Refactored a8 codes and added remote testing app a8_remote.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
class RemoteControl
|
||||
{
|
||||
public:
|
||||
RemoteControl();
|
||||
~RemoteControl();
|
||||
void createNamedPipe(void);
|
||||
void startCommunication(void);
|
||||
|
||||
private:
|
||||
float randomFloatBetween(float min, float max);
|
||||
int mFifoFdIn;
|
||||
int mFifoFdOut;
|
||||
};
|
||||
Reference in New Issue
Block a user