|
I have an inexpensive remote control that talks of 433MHZ. Pushing the button (using rtl_433) generates the following in MQTT: What is the best way to make the slide advance on the message ?
Thanks for writing this! |
Replies: 2 comments
|
Hi @broswell , if you already running home assistant I would propose to create a simple automation. alias: remote next image
description: next image on picframe when pushing button on remote
mode: single
trigger:
- platform: mqtt
topic: rtl_433/alarm/devices/Generic_Remote/57173/cmd 48
condition: []
action:
- service: mqtt.publish
data:
topic: homeassistant/switch/picframe_next/set
payload: 'ON'If you don't use home assistant. I would recommend your option 2. I wouldn't modify picframe's code. You will have to patch it on every update. |
|
This discussion has been automatically locked since there has not been any recent activity after it was closed. Please open a new discussion for related concerns. |
Hi @broswell ,
if you already running home assistant I would propose to create a simple automation.
Code could look like this:
If you don't use home assistant. I would recommend your option 2.
I wouldn't modify picframe's code. You will have to patch it on every update.