File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.9.1 - Add Domestic Hot Water Comfort Mode switch - Feature request
4+
35## 0.9.0 - API change for stick
46
57- Improvement: Debounce relay state
4446 - ` relay_state ` (boolean) - State of the output power relay. Setting this property will operate the relay
4547 - Switch devices
4648 - ` switch ` (boolean) - Last reported state of switch
49+ - Stretch v2: fix failed connection by re-adding the aiohttp-workaround
4750
4851## 0.8.6 - Code quality improvements for stick
4952
6366
6467## 0.8.5 - Fix sensor scaling
6568
66- - Fix for via HA Core issue #44349
69+ - Fix for HA Core issue #44349
6770- Fix other value scaling bugs
6871- Remove aiohttp-workaround - issue solved in aiohttp 3.7.1
6972
Original file line number Diff line number Diff line change @@ -89,6 +89,9 @@ async def setup_app(
8989 app .router .add_route (
9090 "PUT" , "/core/appliances{tail:.*}" , self .smile_set_relay
9191 )
92+ app .router .add_route (
93+ "DELETE" , "/core/notifications{tail:.*}" , self .smile_del_notification
94+ )
9295 else :
9396 app .router .add_route ("PUT" , "/core/locations{tail:.*}" , self .smile_timeout )
9497 app .router .add_route ("PUT" , "/core/rules{tail:.*}" , self .smile_timeout )
@@ -995,6 +998,7 @@ async def test_connect_adam_plus_anna_new(self):
995998 await self .tinker_switch (
996999 smile , ["2743216f626f43948deec1f7ab3b3d70" ], model = "dhw_cm_switch"
9971000 )
1001+
9981002 await smile .close_connection ()
9991003 await self .disconnect (server , client )
10001004
Original file line number Diff line number Diff line change 1-
21Q&D dirty copy of p1v4 data with faulty firmware version
You can’t perform that action at this time.
0 commit comments