summaryrefslogtreecommitdiff
path: root/smart_home
diff options
context:
space:
mode:
Diffstat (limited to 'smart_home')
-rw-r--r--smart_home/cameras.py2
-rw-r--r--smart_home/chromecasts.py2
-rw-r--r--smart_home/device.py6
-rw-r--r--smart_home/device_utils.py2
-rw-r--r--smart_home/lights.py2
-rw-r--r--smart_home/outlets.py2
-rw-r--r--smart_home/registry.py2
-rw-r--r--smart_home/thermometers.py2
-rw-r--r--smart_home/tplink_utils.py2
9 files changed, 20 insertions, 2 deletions
diff --git a/smart_home/cameras.py b/smart_home/cameras.py
index f77ddc6..e7705b2 100644
--- a/smart_home/cameras.py
+++ b/smart_home/cameras.py
@@ -1,5 +1,7 @@
#!/usr/bin/env python3
+# © Copyright 2021-2022, Scott Gasch
+
"""Utilities for dealing with the webcams."""
import logging
diff --git a/smart_home/chromecasts.py b/smart_home/chromecasts.py
index dd6d217..408ccf0 100644
--- a/smart_home/chromecasts.py
+++ b/smart_home/chromecasts.py
@@ -1,5 +1,7 @@
#!/usr/bin/env python3
+# © Copyright 2021-2022, Scott Gasch
+
"""Utilities for dealing with the webcams."""
import atexit
diff --git a/smart_home/device.py b/smart_home/device.py
index 82f1fa6..64302ad 100644
--- a/smart_home/device.py
+++ b/smart_home/device.py
@@ -1,8 +1,12 @@
#!/usr/bin/env python3
+# © Copyright 2021-2022, Scott Gasch
+
"""Most basic definition of a smart device: it must have a name and a
MAC address and may have some optional keywords. All devices have
-these whether they are lights, outlets, thermostats, etc..."""
+these whether they are lights, outlets, thermostats, etc...
+
+"""
import re
from typing import List, Optional
diff --git a/smart_home/device_utils.py b/smart_home/device_utils.py
index 40a7b70..0c0ca98 100644
--- a/smart_home/device_utils.py
+++ b/smart_home/device_utils.py
@@ -1,5 +1,7 @@
#!/usr/bin/env python3
+# © Copyright 2021-2022, Scott Gasch
+
"""General utility functions involving smart home devices."""
import logging
diff --git a/smart_home/lights.py b/smart_home/lights.py
index 2a0b1cd..ee23fb0 100644
--- a/smart_home/lights.py
+++ b/smart_home/lights.py
@@ -1,5 +1,7 @@
#!/usr/bin/env python3
+# © Copyright 2021-2022, Scott Gasch
+
"""Utilities for dealing with the smart lights."""
import datetime
diff --git a/smart_home/outlets.py b/smart_home/outlets.py
index 3765567..fcc3c4e 100644
--- a/smart_home/outlets.py
+++ b/smart_home/outlets.py
@@ -1,5 +1,7 @@
#!/usr/bin/env python3
+# © Copyright 2021-2022, Scott Gasch
+
"""Utilities for dealing with the smart outlets."""
import asyncio
diff --git a/smart_home/registry.py b/smart_home/registry.py
index f79ae90..d63474d 100644
--- a/smart_home/registry.py
+++ b/smart_home/registry.py
@@ -1,5 +1,7 @@
#!/usr/bin/env python3
+# © Copyright 2021-2022, Scott Gasch
+
"""A searchable registry of known smart home devices and a factory for
constructing our wrappers around them."""
diff --git a/smart_home/thermometers.py b/smart_home/thermometers.py
index 90199b9..73117bc 100644
--- a/smart_home/thermometers.py
+++ b/smart_home/thermometers.py
@@ -1,5 +1,7 @@
#!/usr/bin/env python3
+# © Copyright 2021-2022, Scott Gasch
+
"""Code involving querying various smart home thermometers."""
import logging
diff --git a/smart_home/tplink_utils.py b/smart_home/tplink_utils.py
index 30d3bd8..abf4970 100644
--- a/smart_home/tplink_utils.py
+++ b/smart_home/tplink_utils.py
@@ -10,7 +10,7 @@ You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
-Modifications by Scott Gasch Copyright 2020-2022 also released under
+Modifications by Scott Gasch Copyright © 2020-2022 also released under
the Apache 2.0 license as required by the license (see above).
Unless required by applicable law or agreed to in writing, software