ESPHome 2026.1.3
Loading...
Searching...
No Matches
remote_transmitter.cpp
Go to the documentation of this file.
2#include "esphome/core/log.h"
4
5#if defined(USE_LIBRETINY) || defined(USE_ESP8266) || defined(USE_RP2040)
6
7namespace esphome {
8namespace remote_transmitter {
9
10static const char *const TAG = "remote_transmitter";
11
13 this->pin_->setup();
14 this->pin_->digital_write(false);
15}
16
18 ESP_LOGCONFIG(TAG,
19 "Remote Transmitter:\n"
20 " Carrier Duty: %u%%",
22 LOG_PIN(" Pin: ", this->pin_);
23}
24
25void RemoteTransmitterComponent::calculate_on_off_time_(uint32_t carrier_frequency, uint32_t *on_time_period,
26 uint32_t *off_time_period) {
27 if (carrier_frequency == 0) {
28 *on_time_period = 0;
29 *off_time_period = 0;
30 return;
31 }
32 uint32_t period = (1000000UL + carrier_frequency / 2) / carrier_frequency; // round(1000000/freq)
33 period = std::max(uint32_t(1), period);
34 *on_time_period = (period * this->carrier_duty_percent_) / 100;
35 *off_time_period = period - *on_time_period;
36}
37
39 const uint32_t current_time = micros();
40 if (this->target_time_ == 0) {
41 this->target_time_ = current_time;
42 } else if ((int32_t) (this->target_time_ - current_time) > 0) {
43 // busy loop is required as interrupts are disabled and delayMicroseconds()
44 // may not work correctly in interrupt-disabled contexts on all platforms
45 while ((int32_t) (this->target_time_ - micros()) > 0)
46 ;
47 }
48}
49
50void RemoteTransmitterComponent::mark_(uint32_t on_time, uint32_t off_time, uint32_t usec) {
51 this->await_target_time_();
52 this->pin_->digital_write(true);
53
54 const uint32_t target = this->target_time_ + usec;
55 if (this->carrier_duty_percent_ < 100 && (on_time > 0 || off_time > 0)) {
56 while (true) { // Modulate with carrier frequency
57 this->target_time_ += on_time;
58 if ((int32_t) (this->target_time_ - target) >= 0)
59 break;
60 this->await_target_time_();
61 this->pin_->digital_write(false);
62
63 this->target_time_ += off_time;
64 if ((int32_t) (this->target_time_ - target) >= 0)
65 break;
66 this->await_target_time_();
67 this->pin_->digital_write(true);
68 }
69 }
70 this->target_time_ = target;
71}
72
74 this->await_target_time_();
75 this->pin_->digital_write(false);
76 this->target_time_ += usec;
77}
78
80
81void RemoteTransmitterComponent::send_internal(uint32_t send_times, uint32_t send_wait) {
82 ESP_LOGD(TAG, "Sending remote code");
83 uint32_t on_time, off_time;
84 this->calculate_on_off_time_(this->temp_.get_carrier_frequency(), &on_time, &off_time);
85 this->target_time_ = 0;
87 for (uint32_t i = 0; i < send_times; i++) {
88 InterruptLock lock;
89 for (int32_t item : this->temp_.get_data()) {
90 if (item > 0) {
91 const auto length = uint32_t(item);
92 this->mark_(on_time, off_time, length);
93 } else {
94 const auto length = uint32_t(-item);
95 this->space_(length);
96 }
97 App.feed_wdt();
98 }
99 this->await_target_time_(); // wait for duration of last pulse
100 this->pin_->digital_write(false);
101
102 if (i + 1 < send_times)
103 this->target_time_ += send_wait;
104 }
105 this->complete_trigger_->trigger();
106}
107
108} // namespace remote_transmitter
109} // namespace esphome
110
111#endif
void feed_wdt(uint32_t time=0)
virtual void setup()=0
virtual void digital_write(bool value)=0
Helper class to disable interrupts.
Definition helpers.h:1322
void trigger(const Ts &...x)
Inform the parent automation that the event has triggered.
Definition automation.h:238
const RawTimings & get_data() const
Definition remote_base.h:32
RemoteTransmitData temp_
Use same vector for all transmits, avoids many allocations.
void send_internal(uint32_t send_times, uint32_t send_wait) override
void calculate_on_off_time_(uint32_t carrier_frequency, uint32_t *on_time_period, uint32_t *off_time_period)
void mark_(uint32_t on_time, uint32_t off_time, uint32_t usec)
Providing packet encoding functions for exchanging data with a remote host.
Definition a01nyub.cpp:7
uint32_t IRAM_ATTR HOT micros()
Definition core.cpp:27
Application App
Global storage of Application pointer - only one Application can exist.
uint16_t length
Definition tt21100.cpp:0