Decode radio transmissions from devices on the ISM bands in OCaml
1(lang dune 3.0)
2
3(name rtl433)
4
5(generate_opam_files true)
6
7(source
8 (github avsm/ocaml-rtl433))
9
10(authors "Anil Madhavapeddy")
11
12(maintainers "Anil Madhavapeddy")
13
14(license ISC)
15
16(documentation https://avsm.github.io/ocaml-rtl433)
17
18(package
19 (name rtl433)
20 (synopsis "RTL-433 decoder for wireless sensors in OCaml")
21 (description
22 "Pure OCaml implementation of rtl_433, a software decoder for wireless sensors
23 transmitting in the 433MHz/868MHz/915MHz ISM bands. Supports FSK and OOK
24 modulation with pluggable protocol decoders and MQTT output.")
25 (depends
26 (ocaml (>= 5.1))
27 (eio (>= 1.0))
28 eio_main
29 (mqtte (>= 0.1))
30 (cmdliner (>= 1.2))
31 (fmt (>= 0.9))
32 (logs (>= 0.7))
33 ptime)
34 (tags
35 (sdr rtl-sdr 433mhz ism mqtt sensors)))