-
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! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
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. |
Beta Was this translation helpful? Give feedback.
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.