Roboid Control for C++
Loading...
Searching...
No Matches
ArduinoParticipant.h
1#pragma once
2
3#include "Participants/ParticipantUDP.h"
4
5namespace RoboidControl {
6namespace Arduino {
7
8class ParticipantUDP : public RoboidControl::ParticipantUDP {
9 public:
10 void Setup();
11 void Receive();
12 bool Send(Participant* remoteParticipant, int bufferSize);
13 bool Publish(IMessage* msg);
14
15 protected:
16 char* broadcastIpAddress = nullptr;
17
18 void GetBroadcastAddress();
19};
20
21} // namespace Arduino
22} // namespace RoboidControl
A participant using UDP communication A local participant is the local device which can communicate w...
Definition ParticipantUDP.h:45