I'm trying to decode and control my somewhat DIY roller shades through the pi. I'm stuck trying to decode the signal the remote is sending out. I'm trying to use the rtl_433 library to decode the signal but its coming up with an empty string:
Code: Select all
pi@pi:~/rtl_433 $ rtl_433 -a
...
*** signal_start = 1532705, signal_end = 1739189
signal_len = 206484, pulses = 645
Iteration 1. t: 668 min: 127 (630) max: 1210 (15) delta 1805
Iteration 2. t: 668 min: 127 (630) max: 1210 (15) delta 0
Pulse coding: Short pulse length 127 - Long pulse length 1210
Short distance: 76, long distance: 155, packet distance: 610
p_limit: 668
bitbuffer:: Number of rows: 16
[00] {1} 80 : 1
[01] {43} 00 00 00 00 00 20 : 00000000 00000000 00000000 00000000 00000000 001
[02] {43} 00 00 00 00 00 20 : 00000000 00000000 00000000 00000000 00000000 001
[03] {43} 00 00 00 00 00 20 : 00000000 00000000 00000000 00000000 00000000 001
[04] {43} 00 00 00 00 00 20 : 00000000 00000000 00000000 00000000 00000000 001
[05] {43} 00 00 00 00 00 20 : 00000000 00000000 00000000 00000000 00000000 001
[06] {43} 00 00 00 00 00 20 : 00000000 00000000 00000000 00000000 00000000 001
[07] {43} 00 00 00 00 00 20 : 00000000 00000000 00000000 00000000 00000000 001
[08] {43} 00 00 00 00 00 20 : 00000000 00000000 00000000 00000000 00000000 001
[09] {43} 00 00 00 00 00 20 : 00000000 00000000 00000000 00000000 00000000 001
[10] {43} 00 00 00 00 00 20 : 00000000 00000000 00000000 00000000 00000000 001
[11] {43} 00 00 00 00 00 20 : 00000000 00000000 00000000 00000000 00000000 001
[12] {43} 00 00 00 00 00 20 : 00000000 00000000 00000000 00000000 00000000 001
[13] {43} 00 00 00 00 00 20 : 00000000 00000000 00000000 00000000 00000000 001
[14] {43} 00 00 00 00 00 20 : 00000000 00000000 00000000 00000000 00000000 001
[15] {42} 00 00 00 00 00 00 : 00000000 00000000 00000000 00000000 00000000 00
I've attached the wave that I've recorded and my attempt at manually decoding it. Any idea how to get rtl_433 to decode it ? Ultimately I'd like to use 433Utils or similar to be able to play it back over some inexpensive 433 transmitters.
Thank you!!!
---------------------
Roller shade motor + remote:
http://www.ebay.ca/itm/28cm-1-5A-12V-El ... Sw03lY6y4m
rtl_433: https://github.com/merbanan/rtl_433
433Utils: https://github.com/ninjablocks/433Utils