From eed4d6f63b50d81d245336918c2e1aed3a870937 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Fri, 15 Oct 2021 15:10:12 -0600 Subject: [PATCH] Add example settings file --- settings.py.example | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 settings.py.example diff --git a/settings.py.example b/settings.py.example new file mode 100644 index 0000000..3a35b66 --- /dev/null +++ b/settings.py.example @@ -0,0 +1,15 @@ +UFP_USERNAME = 'admin' +UFP_PASSWORD = 'password' +UFP_ADDRESS = '192.168.whatever' +UFP_PORT = 443 + +DOORBELLS = { + '123456780ABC': { + name: 'Front Door', + gpio: 26, + }, + '123456780ABC': { + name: 'Side Door', + gpio: 19, + }, +}