ESPHome  2025.3.3
udp_component.h
Go to the documentation of this file.
1 #pragma once
2 
5 #ifdef USE_SENSOR
7 #endif
8 #ifdef USE_BINARY_SENSOR
10 #endif
11 #if defined(USE_SOCKET_IMPL_BSD_SOCKETS) || defined(USE_SOCKET_IMPL_LWIP_SOCKETS)
13 #endif
14 #ifdef USE_SOCKET_IMPL_LWIP_TCP
15 #include <WiFiUdp.h>
16 #endif
17 #include <vector>
18 #include <map>
19 
20 namespace esphome {
21 namespace udp {
22 
23 struct Provider {
24  std::vector<uint8_t> encryption_key;
25  const char *name;
26  uint32_t last_code[2];
27 };
28 
29 #ifdef USE_SENSOR
30 struct Sensor {
32  const char *id;
33  bool updated;
34 };
35 #endif
36 #ifdef USE_BINARY_SENSOR
37 struct BinarySensor {
39  const char *id;
40  bool updated;
41 };
42 #endif
43 
45  public:
46  void setup() override;
47  void loop() override;
48  void update() override;
49  void dump_config() override;
50 
51 #ifdef USE_SENSOR
52  void add_sensor(const char *id, sensor::Sensor *sensor) {
53  Sensor st{sensor, id, true};
54  this->sensors_.push_back(st);
55  }
56  void add_remote_sensor(const char *hostname, const char *remote_id, sensor::Sensor *sensor) {
57  this->add_provider(hostname);
58  this->remote_sensors_[hostname][remote_id] = sensor;
59  }
60 #endif
61 #ifdef USE_BINARY_SENSOR
63  BinarySensor st{sensor, id, true};
64  this->binary_sensors_.push_back(st);
65  }
66 
67  void add_remote_binary_sensor(const char *hostname, const char *remote_id, binary_sensor::BinarySensor *sensor) {
68  this->add_provider(hostname);
69  this->remote_binary_sensors_[hostname][remote_id] = sensor;
70  }
71 #endif
72  void add_address(const char *addr) { this->addresses_.emplace_back(addr); }
73 #ifdef USE_NETWORK
74  void set_listen_address(const char *listen_addr) { this->listen_address_ = network::IPAddress(listen_addr); }
75 #endif
76  void set_port(uint16_t port) { this->port_ = port; }
77  float get_setup_priority() const override { return setup_priority::AFTER_WIFI; }
78 
79  void add_provider(const char *hostname) {
80  if (this->providers_.count(hostname) == 0) {
81  Provider provider;
82  provider.encryption_key = std::vector<uint8_t>{};
83  provider.last_code[0] = 0;
84  provider.last_code[1] = 0;
85  provider.name = hostname;
86  this->providers_[hostname] = provider;
87 #ifdef USE_SENSOR
88  this->remote_sensors_[hostname] = std::map<std::string, sensor::Sensor *>();
89 #endif
90 #ifdef USE_BINARY_SENSOR
91  this->remote_binary_sensors_[hostname] = std::map<std::string, binary_sensor::BinarySensor *>();
92 #endif
93  }
94  }
95 
96  void set_encryption_key(std::vector<uint8_t> key) { this->encryption_key_ = std::move(key); }
97  void set_rolling_code_enable(bool enable) { this->rolling_code_enable_ = enable; }
98  void set_ping_pong_enable(bool enable) { this->ping_pong_enable_ = enable; }
99  void set_ping_pong_recycle_time(uint32_t recycle_time) { this->ping_pong_recyle_time_ = recycle_time; }
100  void set_provider_encryption(const char *name, std::vector<uint8_t> key) {
101  this->providers_[name].encryption_key = std::move(key);
102  }
103 
104  protected:
105  void send_data_(bool all);
106  void process_(uint8_t *buf, size_t len);
107  void flush_();
108  void add_data_(uint8_t key, const char *id, float data);
109  void add_data_(uint8_t key, const char *id, uint32_t data);
110  void increment_code_();
111  void add_binary_data_(uint8_t key, const char *id, bool data);
112  void init_data_();
113 
114  bool updated_{};
115  uint16_t port_{18511};
116  uint32_t ping_key_{};
117  uint32_t rolling_code_[2]{};
118  bool rolling_code_enable_{};
119  bool ping_pong_enable_{};
120  uint32_t ping_pong_recyle_time_{};
121  uint32_t last_key_time_{};
122  bool resend_ping_key_{};
123  bool resend_data_{};
124  bool should_send_{};
125  const char *name_{};
126  bool should_listen_{};
128 
129 #if defined(USE_SOCKET_IMPL_BSD_SOCKETS) || defined(USE_SOCKET_IMPL_LWIP_SOCKETS)
130  std::unique_ptr<socket::Socket> broadcast_socket_ = nullptr;
131  std::unique_ptr<socket::Socket> listen_socket_ = nullptr;
132  std::vector<struct sockaddr> sockaddrs_{};
133 #endif
134 #ifdef USE_SOCKET_IMPL_LWIP_TCP
135  std::vector<IPAddress> ipaddrs_{};
136  WiFiUDP udp_client_{};
137 #endif
138  std::vector<uint8_t> encryption_key_{};
139  std::vector<std::string> addresses_{};
140 
141 #ifdef USE_SENSOR
142  std::vector<Sensor> sensors_{};
143  std::map<std::string, std::map<std::string, sensor::Sensor *>> remote_sensors_{};
144 #endif
145 #ifdef USE_BINARY_SENSOR
146  std::vector<BinarySensor> binary_sensors_{};
147  std::map<std::string, std::map<std::string, binary_sensor::BinarySensor *>> remote_binary_sensors_{};
148 #endif
149 #ifdef USE_NETWORK
150  optional<network::IPAddress> listen_address_{};
151 #endif
152  std::map<std::string, Provider> providers_{};
153  std::vector<uint8_t> ping_header_{};
154  std::vector<uint8_t> header_{};
155  std::vector<uint8_t> data_{};
156  std::map<const char *, uint32_t> ping_keys_{};
157  void add_key_(const char *name, uint32_t key);
158  void send_ping_pong_request_();
159  void send_packet_(void *data, size_t len);
160  void process_ping_request_(const char *name, uint8_t *ptr, size_t len);
161 
162  inline bool is_encrypted_() { return !this->encryption_key_.empty(); }
163 };
164 
165 } // namespace udp
166 } // namespace esphome
void setup()
void add_remote_sensor(const char *hostname, const char *remote_id, sensor::Sensor *sensor)
Definition: udp_component.h:56
void loop()
void add_sensor(const char *id, sensor::Sensor *sensor)
Definition: udp_component.h:52
void set_rolling_code_enable(bool enable)
Definition: udp_component.h:97
std::vector< uint8_t > encryption_key
Definition: udp_component.h:24
binary_sensor::BinarySensor * sensor
Definition: udp_component.h:38
void add_provider(const char *hostname)
Definition: udp_component.h:79
const float AFTER_WIFI
For components that should be initialized after WiFi is connected.
Definition: component.cpp:26
void set_encryption_key(std::vector< uint8_t > key)
Definition: udp_component.h:96
T id(T value)
Helper function to make id(var) known from lambdas work in custom components.
Definition: helpers.h:798
This class simplifies creating components that periodically check a state.
Definition: component.h:283
void add_remote_binary_sensor(const char *hostname, const char *remote_id, binary_sensor::BinarySensor *sensor)
Definition: udp_component.h:67
void add_binary_sensor(const char *id, binary_sensor::BinarySensor *sensor)
Definition: udp_component.h:62
void set_provider_encryption(const char *name, std::vector< uint8_t > key)
void add_address(const char *addr)
Definition: udp_component.h:72
void set_listen_address(const char *listen_addr)
Definition: udp_component.h:74
void set_ping_pong_enable(bool enable)
Definition: udp_component.h:98
float get_setup_priority() const override
Definition: udp_component.h:77
ESPPreferenceObject pref_
std::string size_t len
Definition: helpers.h:301
sensor::Sensor * sensor
Definition: udp_component.h:31
Implementation of SPI Controller mode.
Definition: a01nyub.cpp:7
Base class for all binary_sensor-type classes.
Definition: binary_sensor.h:37
void set_ping_pong_recycle_time(uint32_t recycle_time)
Definition: udp_component.h:99
Base-class for all sensors.
Definition: sensor.h:57
esphome::sensor::Sensor * sensor
Definition: statsd.h:38
void set_port(uint16_t port)
Definition: udp_component.h:76