Decode radio transmissions from devices on the ISM bands in OCaml
at main 41 lines 1.1 kB view raw
1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3synopsis: "RTL-433 decoder for wireless sensors in OCaml" 4description: """ 5Pure OCaml implementation of rtl_433, a software decoder for wireless sensors 6 transmitting in the 433MHz/868MHz/915MHz ISM bands. Supports FSK and OOK 7 modulation with pluggable protocol decoders and MQTT output.""" 8maintainer: ["Anil Madhavapeddy"] 9authors: ["Anil Madhavapeddy"] 10license: "ISC" 11tags: ["sdr" "rtl-sdr" "433mhz" "ism" "mqtt" "sensors"] 12homepage: "https://github.com/avsm/ocaml-rtl433" 13doc: "https://avsm.github.io/ocaml-rtl433" 14bug-reports: "https://github.com/avsm/ocaml-rtl433/issues" 15depends: [ 16 "dune" {>= "3.0"} 17 "ocaml" {>= "5.1"} 18 "eio" {>= "1.0"} 19 "eio_main" 20 "mqtte" {>= "0.1"} 21 "cmdliner" {>= "1.2"} 22 "fmt" {>= "0.9"} 23 "logs" {>= "0.7"} 24 "ptime" 25 "odoc" {with-doc} 26] 27build: [ 28 ["dune" "subst"] {dev} 29 [ 30 "dune" 31 "build" 32 "-p" 33 name 34 "-j" 35 jobs 36 "@install" 37 "@runtest" {with-test} 38 "@doc" {with-doc} 39 ] 40] 41dev-repo: "git+https://github.com/avsm/ocaml-rtl433.git"