summaryrefslogtreecommitdiff
path: root/people.py
diff options
context:
space:
mode:
authorScott <[email protected]>2021-12-05 20:50:59 -0800
committerScott <[email protected]>2021-12-05 20:50:59 -0800
commitc63d439fb7e1d6f50e849b580f8bc6cfe88a81b6 (patch)
tree469bc414979e12dd5a40b81d0c2c30485fec8323 /people.py
parentb29be4f1750fd20bd2eada88e751dfae85817882 (diff)
Make presence detection work from cabin or house and deal with a
bad VPN link between them better.
Diffstat (limited to 'people.py')
-rw-r--r--people.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/people.py b/people.py
new file mode 100644
index 0000000..1dc0421
--- /dev/null
+++ b/people.py
@@ -0,0 +1,14 @@
+#!/usr/bin/env python3
+
+import enum
+
+
+class Person(enum.Enum):
+ UNKNOWN = 0
+ SCOTT = 1
+ LYNN = 2
+ ALEX = 3
+ AARON_AND_DANA = 4
+ AARON = 4
+ DANA = 4
+