From f03710a53d248e751d158b8b5a8ca3a977c4c94a Mon Sep 17 00:00:00 2001
From: "Christian W. Zuckschwerdt" <christian@zuckschwerdt.org>
Date: Mon, 20 Jul 2020 12:53:03 +0200
Subject: [PATCH] Add Friedland EVO door bell conf

---
 conf/friedlandevo.conf | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)
 create mode 100644 conf/friedlandevo.conf

diff --git a/conf/friedlandevo.conf b/conf/friedlandevo.conf
new file mode 100644
index 00000000..a93a70f2
--- /dev/null
+++ b/conf/friedlandevo.conf
@@ -0,0 +1,27 @@
+# Friedland EVO door bell
+#
+# This decodes the transmissions from the Friedland EVO wireless door bell buttons. The
+# Friedland doorbell system allows multiple buttons and multiple bells and will make a
+# different sound depending on which door button was pressed. This has only been tested with
+# 2 different buttons.
+#
+# In order to eliminate other transmissions the match function has been used with part of
+# the data that was the same between the two tested variants. This may not hold true for
+# different devices so be prepared to remove/adjust as needed.
+#
+# The frequency is around 433.8Mhz
+#
+# Note: The buttons send out the same data 12 times so you may need to write a filter
+# to pipe the output through to remove them
+#
+
+decoder {
+    name        = FriedlandEvo,
+    modulation  = OOK_PCM,
+    short       = 750,
+    long        = 750,
+    reset       = 9000,
+    preamble    = AA,
+    match       = 0x410408210400,
+    unique
+}