mirror of
https://github.com/esphome/esphome.git
synced 2024-11-23 15:38:11 +01:00
What changed here
This commit is contained in:
parent
062242c066
commit
79da2628d8
2 changed files with 2 additions and 2 deletions
|
@ -34,7 +34,7 @@ void VornadoIR::send_decrease() {
|
||||||
this->transmit_(VORNADO_IR_DECREASE_TIMINGS);
|
this->transmit_(VORNADO_IR_DECREASE_TIMINGS);
|
||||||
}
|
}
|
||||||
|
|
||||||
void VornadoIR::transmit_(const RawTimings ir_code) {
|
void VornadoIR::transmit_(RawTimings ir_code) {
|
||||||
ESP_LOGD(TAG, "Sending ir_code");
|
ESP_LOGD(TAG, "Sending ir_code");
|
||||||
auto transmit = this->transmitter_->transmit();
|
auto transmit = this->transmitter_->transmit();
|
||||||
ESP_LOGD(TAG, "Sending ir_code got transmitter");
|
ESP_LOGD(TAG, "Sending ir_code got transmitter");
|
||||||
|
|
|
@ -17,7 +17,7 @@ class VornadoIR : public Component, public remote_base::RemoteTransmittable {
|
||||||
void loop() override;
|
void loop() override;
|
||||||
void dump_config() override;
|
void dump_config() override;
|
||||||
// general functions
|
// general functions
|
||||||
void transmit_(const RawTimings ir_code);
|
void transmit_(RawTimings ir_code);
|
||||||
// direct actions
|
// direct actions
|
||||||
void send_power_toggle();
|
void send_power_toggle();
|
||||||
void send_change_direction();
|
void send_change_direction();
|
||||||
|
|
Loading…
Reference in a new issue