Added sendData function call to remote main.

Commented out more things that are currently not needed.
This commit is contained in:
Nffj84
2024-07-03 16:10:24 +03:00
parent 3e0841b0ca
commit 0b4b2f9f10
4 changed files with 24 additions and 6 deletions
+2 -2
View File
@@ -12,16 +12,16 @@ class RemoteControl
public:
RemoteControl();
~RemoteControl();
void createNamedPipe(void);
void sendData(uint16_t top, uint16_t left, uint16_t bottom, uint16_t right);
#ifdef FIFO_TEST
void startTest(void);
#endif
private:
void createNamedPipe(void);
#ifdef FIFO_TEST
float randomFloatBetween(float min, float max);
#endif
int mFifoFdIn;
#endif
int mFifoFdOut;
};