ESPHome 2026.9.0-dev
Loading...
Searching...
No Matches
rd03d.cpp
Go to the documentation of this file.
1#include "rd03d.h"
3#include "esphome/core/log.h"
4
5#include <cinttypes>
6#include <cmath>
7#include <numbers>
8
9namespace esphome::rd03d {
10
11static const char *const TAG = "rd03d";
12
13// Delay before sending configuration commands to allow radar to initialize
14static constexpr uint32_t SETUP_TIMEOUT_MS = 100;
15
16// Data frame format (radar -> host)
17static constexpr uint8_t FRAME_HEADER[] = {0xAA, 0xFF, 0x03, 0x00};
18static constexpr uint8_t FRAME_FOOTER[] = {0x55, 0xCC};
19
20// Command frame format (host -> radar)
21static constexpr uint8_t CMD_FRAME_HEADER[] = {0xFD, 0xFC, 0xFB, 0xFA};
22static constexpr uint8_t CMD_FRAME_FOOTER[] = {0x04, 0x03, 0x02, 0x01};
23
24// RD-03D tracking mode commands
25static constexpr uint16_t CMD_SINGLE_TARGET = 0x0080;
26static constexpr uint16_t CMD_MULTI_TARGET = 0x0090;
27
28// Speed sentinel values (cm/s) - radar outputs these when no valid Doppler measurement
29// FMCW radars detect motion via Doppler shift; targets with these speeds are likely noise
30static constexpr int16_t SPEED_SENTINEL_248 = 248;
31static constexpr int16_t SPEED_SENTINEL_256 = 256;
32
33// Decode coordinate/speed value from RD-03D format
34// Per datasheet: MSB=1 means positive, MSB=0 means negative
35static constexpr int16_t decode_value(uint8_t low_byte, uint8_t high_byte) {
36 int16_t value = ((high_byte & 0x7F) << 8) | low_byte;
37 if ((high_byte & 0x80) == 0) {
38 value = -value;
39 }
40 return value;
41}
42
43// Check if speed value indicates a valid Doppler measurement
44// Zero, ±248, or ±256 cm/s are sentinel values from the radar firmware
45static constexpr bool is_speed_valid(int16_t speed) {
46 int16_t abs_speed = speed < 0 ? -speed : speed;
47 return speed != 0 && abs_speed != SPEED_SENTINEL_248 && abs_speed != SPEED_SENTINEL_256;
48}
49
51 ESP_LOGCONFIG(TAG, "Setting up RD-03D...");
52 this->set_timeout(SETUP_TIMEOUT_MS, [this]() { this->apply_config_(); });
53}
54
56 ESP_LOGCONFIG(TAG, "RD-03D:");
57 if (this->tracking_mode_.has_value()) {
58 ESP_LOGCONFIG(
59 TAG, " Tracking Mode: %s",
60 *this->tracking_mode_ == TrackingMode::SINGLE_TARGET ? LOG_STR_LITERAL("single") : LOG_STR_LITERAL("multi"));
61 }
62 if (this->throttle_ > 0) {
63 ESP_LOGCONFIG(TAG, " Throttle: %" PRIu32 "ms", this->throttle_);
64 }
65#ifdef USE_SENSOR
66 LOG_SENSOR(" ", "Target Count", this->target_count_sensor_);
67#endif
68#ifdef USE_BINARY_SENSOR
69 LOG_BINARY_SENSOR(" ", "Target", this->target_binary_sensor_);
70#endif
71 for (uint8_t i = 0; i < MAX_TARGETS; i++) {
72 ESP_LOGCONFIG(TAG, " Target %d:", i + 1);
73#ifdef USE_SENSOR
74 LOG_SENSOR(" ", "X", this->targets_[i].x);
75 LOG_SENSOR(" ", "Y", this->targets_[i].y);
76 LOG_SENSOR(" ", "Speed", this->targets_[i].speed);
77 LOG_SENSOR(" ", "Distance", this->targets_[i].distance);
78 LOG_SENSOR(" ", "Resolution", this->targets_[i].resolution);
79 LOG_SENSOR(" ", "Angle", this->targets_[i].angle);
80#endif
81#ifdef USE_BINARY_SENSOR
82 LOG_BINARY_SENSOR(" ", "Presence", this->target_presence_[i]);
83#endif
84 }
85}
86
88 // Read all available bytes in batches to reduce UART call overhead.
89 size_t avail = this->available();
90 uint8_t buf[64];
91 while (avail > 0) {
92 size_t to_read = std::min(avail, sizeof(buf));
93 if (!this->read_array(buf, to_read)) {
94 break;
95 }
96 avail -= to_read;
97 for (size_t i = 0; i < to_read; i++) {
98 uint8_t byte = buf[i];
99 ESP_LOGVV(TAG, "Received byte: 0x%02X, buffer_pos: %d", byte, this->buffer_pos_);
100
101 // Check if we're looking for frame header
102 if (this->buffer_pos_ < FRAME_HEADER_SIZE) {
103 if (byte == FRAME_HEADER[this->buffer_pos_]) {
104 this->buffer_[this->buffer_pos_++] = byte;
105 } else if (byte == FRAME_HEADER[0]) {
106 // Start over if we see a potential new header
107 this->buffer_[0] = byte;
108 this->buffer_pos_ = 1;
109 } else {
110 this->buffer_pos_ = 0;
111 }
112 continue;
113 }
114
115 // Accumulate data bytes
116 this->buffer_[this->buffer_pos_++] = byte;
117
118 // Check if we have a complete frame
119 if (this->buffer_pos_ == FRAME_SIZE) {
120 // Validate footer
121 if (this->buffer_[FRAME_SIZE - 2] == FRAME_FOOTER[0] && this->buffer_[FRAME_SIZE - 1] == FRAME_FOOTER[1]) {
122 this->process_frame_();
123 } else {
124 ESP_LOGW(TAG, "Invalid frame footer: 0x%02X 0x%02X (expected 0x55 0xCC)", this->buffer_[FRAME_SIZE - 2],
125 this->buffer_[FRAME_SIZE - 1]);
126 }
127 this->buffer_pos_ = 0;
128 }
129 }
130 }
131}
132
134 // Apply throttle if configured
135 if (this->throttle_ > 0) {
136 uint32_t now = millis();
137 if (now - this->last_publish_time_ < this->throttle_) {
138 return;
139 }
140 this->last_publish_time_ = now;
141 }
142
143 uint8_t target_count = 0;
144
145 for (uint8_t i = 0; i < MAX_TARGETS; i++) {
146 // Calculate offset for this target's data
147 // Header is 4 bytes, each target is 8 bytes
148 uint8_t offset = FRAME_HEADER_SIZE + (i * TARGET_DATA_SIZE);
149
150 // Extract raw bytes for this target (per datasheet Table 5-2: X, Y, Speed, Resolution)
151 uint8_t x_low = this->buffer_[offset + 0];
152 uint8_t x_high = this->buffer_[offset + 1];
153 uint8_t y_low = this->buffer_[offset + 2];
154 uint8_t y_high = this->buffer_[offset + 3];
155 uint8_t speed_low = this->buffer_[offset + 4];
156 uint8_t speed_high = this->buffer_[offset + 5];
157 uint8_t res_low = this->buffer_[offset + 6];
158 uint8_t res_high = this->buffer_[offset + 7];
159
160 // Decode values per RD-03D format
161 int16_t x = decode_value(x_low, x_high);
162 int16_t y = decode_value(y_low, y_high);
163 int16_t speed = decode_value(speed_low, speed_high);
164 uint16_t resolution = (res_high << 8) | res_low;
165
166 // Check if target is present
167 // Requires non-zero coordinates AND valid speed (not a sentinel value)
168 // FMCW radars detect motion via Doppler; sentinel speed indicates no real target
169 bool has_position = (x != 0 || y != 0);
170 bool has_valid_speed = is_speed_valid(speed);
171 bool target_present = has_position && has_valid_speed;
172 if (target_present) {
173 target_count++;
174 }
175
176#ifdef USE_SENSOR
177 this->publish_target_(i, x, y, speed, resolution);
178#endif
179
180#ifdef USE_BINARY_SENSOR
181 if (this->target_presence_[i] != nullptr) {
182 this->target_presence_[i]->publish_state(target_present);
183 }
184#endif
185 }
186
187#ifdef USE_SENSOR
188 if (this->target_count_sensor_ != nullptr) {
189 this->target_count_sensor_->publish_state(target_count);
190 }
191#endif
192
193#ifdef USE_BINARY_SENSOR
194 if (this->target_binary_sensor_ != nullptr) {
195 this->target_binary_sensor_->publish_state(target_count > 0);
196 }
197#endif
198}
199
200#ifdef USE_SENSOR
201void RD03DComponent::publish_target_(uint8_t target_num, int16_t x, int16_t y, int16_t speed, uint16_t resolution) {
202 TargetSensor &target = this->targets_[target_num];
203 bool valid = is_speed_valid(speed);
204
205 // Publish X coordinate (mm) - NaN if target invalid
206 if (target.x != nullptr) {
207 target.x->publish_state(valid ? static_cast<float>(x) : NAN);
208 }
209
210 // Publish Y coordinate (mm) - NaN if target invalid
211 if (target.y != nullptr) {
212 target.y->publish_state(valid ? static_cast<float>(y) : NAN);
213 }
214
215 // Publish speed (convert from cm/s to mm/s) - NaN if target invalid
216 if (target.speed != nullptr) {
217 target.speed->publish_state(valid ? static_cast<float>(speed) * 10.0f : NAN);
218 }
219
220 // Publish resolution (mm)
221 if (target.resolution != nullptr) {
223 }
224
225 // Calculate and publish distance (mm) - NaN if target invalid
226 if (target.distance != nullptr) {
227 if (valid) {
228 target.distance->publish_state(std::hypot(static_cast<float>(x), static_cast<float>(y)));
229 } else {
230 target.distance->publish_state(NAN);
231 }
232 }
233
234 // Calculate and publish angle (degrees) - NaN if target invalid
235 // Angle is measured from the Y axis (radar forward direction)
236 if (target.angle != nullptr) {
237 if (valid) {
238 float angle = std::atan2(static_cast<float>(x), static_cast<float>(y)) * 180.0f / std::numbers::pi_v<float>;
239 target.angle->publish_state(angle);
240 } else {
241 target.angle->publish_state(NAN);
242 }
243 }
244}
245#endif
246
247void RD03DComponent::send_command_(uint16_t command, const uint8_t *data, uint8_t data_len) {
248 // Send header
249 this->write_array(CMD_FRAME_HEADER, sizeof(CMD_FRAME_HEADER));
250
251 // Send length (command word + data)
252 uint16_t len = 2 + data_len;
253 this->write_byte(len & 0xFF);
254 this->write_byte((len >> 8) & 0xFF);
255
256 // Send command word (little-endian)
257 this->write_byte(command & 0xFF);
258 this->write_byte((command >> 8) & 0xFF);
259
260 // Send data if any
261 if (data != nullptr && data_len > 0) {
262 this->write_array(data, data_len);
263 }
264
265 // Send footer
266 this->write_array(CMD_FRAME_FOOTER, sizeof(CMD_FRAME_FOOTER));
267
268 ESP_LOGD(TAG, "Sent command 0x%04X with %d bytes of data", command, data_len);
269}
270
272 if (this->tracking_mode_.has_value()) {
273 uint16_t mode_cmd = (*this->tracking_mode_ == TrackingMode::SINGLE_TARGET) ? CMD_SINGLE_TARGET : CMD_MULTI_TARGET;
274 this->send_command_(mode_cmd);
275 }
276}
277
278} // namespace esphome::rd03d
void set_timeout(const char *name, uint32_t timeout, std::function< void()> &&f)
Set a timeout function with a const char* name.
Definition component.cpp:96
void publish_state(bool new_state)
Publish a new state to the front-end.
optional< TrackingMode > tracking_mode_
Definition rd03d.h:84
std::array< TargetSensor, MAX_TARGETS > targets_
Definition rd03d.h:75
void dump_config() override
Definition rd03d.cpp:55
void send_command_(uint16_t command, const uint8_t *data=nullptr, uint8_t data_len=0)
Definition rd03d.cpp:247
binary_sensor::BinarySensor * target_binary_sensor_
Definition rd03d.h:80
std::array< uint8_t, FRAME_SIZE > buffer_
Definition rd03d.h:88
void publish_target_(uint8_t target_num, int16_t x, int16_t y, int16_t speed, uint16_t resolution)
Definition rd03d.cpp:201
std::array< binary_sensor::BinarySensor *, MAX_TARGETS > target_presence_
Definition rd03d.h:79
sensor::Sensor * target_count_sensor_
Definition rd03d.h:76
void publish_state(float state)
Publish a new state to the front-end.
Definition sensor.cpp:68
optional< std::array< uint8_t, N > > read_array()
Definition uart.h:38
void write_byte(uint8_t data)
Definition uart.h:18
void write_array(const uint8_t *data, size_t len)
Definition uart.h:26
int speed
Definition fan.h:3
Resolution resolution
Definition msa3xx.h:1
const void size_t len
Definition hal.h:64
uint32_t IRAM_ATTR HOT millis()
Definition hal.cpp:28
bool valid
static void uint32_t
sensor::Sensor * resolution
Definition rd03d.h:35
sensor::Sensor * distance
Definition rd03d.h:34
sensor::Sensor * x
Definition rd03d.h:31
sensor::Sensor * speed
Definition rd03d.h:33
sensor::Sensor * y
Definition rd03d.h:32
sensor::Sensor * angle
Definition rd03d.h:36
uint16_t x
Definition tt21100.cpp:5
uint16_t y
Definition tt21100.cpp:6