Skip to content

Commit 75ad8fa

Browse files
mrlt8Deach01
andcommitted
Changelog
Co-Authored-By: Deach01 <[email protected]>
1 parent fb980e9 commit 75ad8fa

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,13 @@ You can then use the web interface at `http://localhost:5000` where localhost is
5959

6060
See [basic usage](#basic-usage) for additional information or visit the [wiki page](https://github.com/mrlt8/docker-wyze-bridge/wiki/Home-Assistant) for additional information on using the bridge as a Home Assistant Add-on.
6161

62+
## What's Changed in v2.9.7
63+
64+
- FIX: Pan and tilt cruise points 3 and 4 were broken. Thanks @Deach01! (#1228)
65+
- FIX: Remove whitespaces from credentials (#1252)
66+
- CHANGED: Removed `blank` option when setting `cruise_points` as it would be ignored anyways.
67+
68+
6269
## What's Changed in v2.9.6
6370

6471
- FIX: Connection to camera would get stuck and not come back on it's own until the webui was opened. Thanks @vipergts450 and @g13092! (#1234) (#1240)

app/wyzecam/tutk/tutk_protocol.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1061,7 +1061,6 @@ class K11012SetCruisePoints(TutkWyzeProtocolMessage):
10611061
- vertical (int[0-40], optional): vertical angle.
10621062
- horizontal (int[0-350], optional): horizontal angle.
10631063
- time (int, optional[10-255]): wait time in seconds. Defaults to 10.
1064-
- blank (int, optional): skip.
10651064
- wait_time(int, optional): Default wait time. Defaults to 10.
10661065
"""
10671066

@@ -1070,8 +1069,6 @@ def __init__(self, points: list[dict], wait_time=10):
10701069

10711070
self.points = bytearray(pack("<B", len(points)))
10721071
for point in points:
1073-
if point.get("blank", 0):
1074-
continue
10751072
vertical = int(point.get("vertical", 0))
10761073
horizontal = int(point.get("horizontal", 0))
10771074
time = int(point.get("time", wait_time))

home_assistant/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## What's Changed in v2.9.7
2+
3+
- FIX: Pan and tilt cruise points 3 and 4 were broken. Thanks @Deach01! (#1228)
4+
- FIX: Remove whitespaces from credentials (#1252)
5+
- CHANGED: Removed `blank` option when setting `cruise_points` as it would be ignored anyways.
6+
7+
18
## What's Changed in v2.9.6
29

310
- FIX: Connection to camera would get stuck and not come back on it's own until the webui was opened. Thanks @vipergts450 and @g13092! (#1234) (#1240)

0 commit comments

Comments
 (0)