mirror of
https://github.com/azaion/autopilot.git
synced 2026-04-22 22:16:33 +00:00
13 lines
208 B
C++
13 lines
208 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
#define UDP_WHO_AM_I "AI"
|
|
#define UDP_PORT 26662
|
|
|
|
class RemoteControl
|
|
{
|
|
public:
|
|
static uint8_t sendData(uint16_t top, uint16_t left, uint16_t bottom, uint16_t right);
|
|
};
|