Skip to content

Commit 0f673bc

Browse files
jenskdsgnzuckschwerdt
authored andcommitted
Add decoder conf for ELRO AB440 remote (closes #2066)
1 parent 8c5e38f commit 0f673bc

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

conf/elro_ab440r.conf

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# ELRO AB440R remote control.
2+
3+
# Remote switch to turn on or off power sockets.
4+
# The remote control has 8 buttons to control 4 sockets (on and off button)
5+
# and 5 dip switches to dial in a unique local channel (0-31)
6+
#
7+
# User manual: https://www.libble.eu/elro-ab440-series/online-manual-313854/
8+
#
9+
# Payload format:
10+
#
11+
# 1C1C1C1C1C 1B1B1B1B 10 1S1S 10000000
12+
#
13+
# CCCCC: 5 bit channel number (reversed)
14+
# BBBB: 1000 = button A
15+
# 0100 = button B
16+
# 0010 = button C
17+
# 0001 = button D
18+
# SS: 10 = ON
19+
# 01 = OFF
20+
#
21+
# Test:
22+
# rtl_433 -c conf/elro_ab440r.conf -y '{25}bbabae8'
23+
#
24+
25+
decoder {
26+
name=ELRO-AB440R,
27+
modulation=OOK_PWM,
28+
short=330,
29+
long=970,
30+
gap=1200,
31+
reset=9000,
32+
bits=25,
33+
symbol_zero={2}8,
34+
symbol_one={2}c,
35+
get=@0:{5}:channel,
36+
get=@5:{4}:button:[8:A 4:B 2:C 1:D],
37+
get=@10:{2}:toggle:[2:ON 1:OFF],
38+
unique
39+
}

0 commit comments

Comments
 (0)