diff options
| author | Scott <[email protected]> | 2022-01-10 14:56:55 -0800 |
|---|---|---|
| committer | Scott <[email protected]> | 2022-01-10 14:56:55 -0800 |
| commit | 9ebe82e9024e3d66c11e198e6a2811999686cab9 (patch) | |
| tree | f72c535f3b8c581c9bc772e50b181eff78796023 /base_presence.py | |
| parent | 44a7740bf6fe18673f8636658256a227e0622880 (diff) | |
Update MAC address.
Diffstat (limited to 'base_presence.py')
| -rwxr-xr-x | base_presence.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/base_presence.py b/base_presence.py index cd62bb7..eff613b 100755 --- a/base_presence.py +++ b/base_presence.py @@ -42,7 +42,7 @@ class PresenceDetection(object): # Note: list most important devices first. self.devices_by_person: Dict[Person, List[str]] = { Person.SCOTT: [ - "3C:28:6D:10:6D:41", # pixel3 + "DC:E5:5B:0F:03:3D", # pixel6 "6C:40:08:AE:DC:2E", # laptop ], Person.LYNN: [ @@ -242,8 +242,8 @@ def main() -> None: for person in Person: print(f'{person} => {p.where_is_person_now(person)}') print() - for location in Location: - print(f'{location} => {p.is_anyone_in_location_now(location)}') +# for location in Location: +# print(f'{location} => {p.is_anyone_in_location_now(location)}') if __name__ == '__main__': |
