We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey, I wanted to know if ESPHome support could be added to the IR sensor. I already got a working config with this
esp8266: board: esp8285 restore_from_flash: true status_led: pin: GPIO13 binary_sensor: - platform: gpio pin: GPIO0 id: physical_button - platform: status name: "IR Status" remote_transmitter: pin: number: GPIO4 carrier_duty_percent: 50% remote_receiver: pin: number: GPIO5 inverted: true dump: all
Heres what it would look like to add buttons to trigger signals (though this would probably be up to the user to configure)
switch: - platform: restart name: "Restart" button: - platform: template name: Fan Toggle Power id: toggle_power on_press: - remote_transmitter.transmit_nec: address: 0xFE01 command: 0x7C83 command_repeats: 1 - platform: template name: Fan Toggle Speed id: toggle_speed on_press: - remote_transmitter.transmit_nec: address: 0xFE01 command: 0x7887 command_repeats: 1 - platform: template name: Fan Toggle Time id: toggle_time on_press: - remote_transmitter.transmit_nec: address: 0xFE01 command: 0x748B command_repeats: 1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hey, I wanted to know if ESPHome support could be added to the IR sensor. I already got a working config with this
Heres what it would look like to add buttons to trigger signals (though this would probably be up to the user to configure)
The text was updated successfully, but these errors were encountered: