diff options
| author | Scott <[email protected]> | 2021-12-05 20:50:59 -0800 |
|---|---|---|
| committer | Scott <[email protected]> | 2021-12-05 20:50:59 -0800 |
| commit | c63d439fb7e1d6f50e849b580f8bc6cfe88a81b6 (patch) | |
| tree | 469bc414979e12dd5a40b81d0c2c30485fec8323 /people.py | |
| parent | b29be4f1750fd20bd2eada88e751dfae85817882 (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.py | 14 |
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 + |
