Skip to content
New issue

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

Add IDM and NetIDM support #1421

Merged
merged 12 commits into from Jul 20, 2020
Merged
3 changes: 3 additions & 0 deletions README.md
Expand Up @@ -233,6 +233,9 @@ See [CONTRIBUTING.md](./docs/CONTRIBUTING.md).
[157] Missil ML0757 weather station
[158] Sharp SPC775 weather station
[159] Insteon
[160] IDM
[161] NetIDM


* Disabled by default, use -R n or -G

Expand Down
2 changes: 2 additions & 0 deletions include/rtl_433_devices.h
Expand Up @@ -167,6 +167,8 @@
DECL(missil_ml0757) \
DECL(sharp_spc775) \
DECL(insteon) \
DECL(idm) \
DECL(netidm) \

/* Add new decoders here. */

Expand Down
6 changes: 6 additions & 0 deletions man/man1/rtl_433.1
Expand Up @@ -598,6 +598,12 @@ Sharp SPC775 weather station
.TP
[ \fB159\fI\fP ]
Insteon
.TP
[ \fB160\fI\fP ]
IDM
.TP
[ \fB161\fI\fP ]
NetIDM

* Disabled by default, use \-R n or \-G
.SS "Input device selection"
Expand Down
1 change: 1 addition & 0 deletions src/CMakeLists.txt
Expand Up @@ -89,6 +89,7 @@ add_library(r_433 STATIC
devices/honeywell_wdb.c
devices/ht680.c
devices/ibis_beacon.c
devices/idm.c
devices/ikea_sparsnas.c
devices/infactory.c
devices/inovalley-kw9015b.c
Expand Down
1 change: 1 addition & 0 deletions src/Makefile.am
Expand Up @@ -88,6 +88,7 @@ rtl_433_SOURCES = abuf.c \
devices/honeywell_wdb.c \
devices/ht680.c \
devices/ibis_beacon.c \
devices/idm.c \
devices/ikea_sparsnas.c \
devices/infactory.c \
devices/inovalley-kw9015b.c \
Expand Down