forked from forkineye/ESPixelStick
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathudpraw.h
52 lines (36 loc) · 1.44 KB
/
udpraw.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#ifndef __UDPRAW_H__
#define __UDPRAW_H__
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#include <ESPAsyncUDP.h>
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#define ESPS_UDP_RAW_DEFAULT_PORT 2801
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Status structure
typedef struct {
uint32_t num_packets;
uint32_t long_packets;
uint32_t short_packets;
uint32_t packet_errors;
IPAddress last_clientIP;
uint16_t last_clientPort;
unsigned long last_seen;
} udpraw_stats_t;
class UdpRaw
{
AsyncUDP _udp;
public:
udpraw_stats_t stats; // Statistics tracker
bool zeropad = true;
void begin(uint16_t port = ESPS_UDP_RAW_DEFAULT_PORT);
void end()
{
_udp.close();
}
private:
void onPacket(AsyncUDPPacket packet);
uint16_t port = ESPS_UDP_RAW_DEFAULT_PORT;
};
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#endif // #ifndef __UDPRAW_H__
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////