epenet
476a59d248
Adjust async_step_dhcp signature for strict typing ( #59751 )
...
Co-authored-by: epenet <epenet@users.noreply.github.com>
2021-11-16 12:19:50 +01:00
epenet
b3ffc1e183
Adjust async_step_zeroconf signature for strict typing ( #59503 )
...
Co-authored-by: epenet <epenet@users.noreply.github.com>
2021-11-15 18:05:45 +01:00
GitHub Action
f0c9f443d1
[ci skip] Translation update
2021-11-15 00:12:46 +00:00
GitHub Action
3f2b1fa952
[ci skip] Translation update
2021-11-12 00:12:35 +00:00
GitHub Action
34bc1298aa
[ci skip] Translation update
2021-11-11 00:15:23 +00:00
GitHub Action
86b12af3dc
[ci skip] Translation update
2021-11-10 00:17:39 +00:00
GitHub Action
a989fd2e66
[ci skip] Translation update
2021-11-09 00:15:20 +00:00
GitHub Action
e35b83081e
[ci skip] Translation update
2021-11-08 00:12:31 +00:00
GitHub Action
332a571bb4
[ci skip] Translation update
2021-11-07 00:12:38 +00:00
GitHub Action
7b59dea67e
[ci skip] Translation update
2021-11-06 00:11:41 +00:00
GitHub Action
30fb619095
[ci skip] Translation update
2021-10-24 00:12:57 +00:00
Marc Mueller
70469e0979
Use assignment expressions 23 ( #58180 )
2021-10-22 11:13:05 +02:00
GitHub Action
f9d985553c
[ci skip] Translation update
2021-10-22 00:14:10 +00:00
GitHub Action
a1176cc79a
[ci skip] Translation update
2021-10-18 00:11:59 +00:00
GitHub Action
01d883d7c9
[ci skip] Translation update
2021-10-08 00:13:12 +00:00
Simone Chemelli
9de3bd77d8
Fix SamsungTV shutdown race condition ( #57149 )
2021-10-05 20:25:57 -07:00
Paulus Schoutsen
eb9b9c57a4
[ci skip] Translation update
2021-10-04 08:38:24 -07:00
GitHub Action
f42c2f5170
[ci skip] Translation update
2021-10-02 12:59:05 +00:00
Simone Chemelli
0a5fdb2e68
Address late review of samsungtv ( #56382 )
2021-09-18 15:42:36 +02:00
Simone Chemelli
4160a5ee3b
Strict typing for SamsungTV ( #53585 )
...
Co-authored-by: Franck Nijhof <frenck@frenck.nl>
Co-authored-by: J. Nick Koston <nick@koston.org>
2021-09-17 18:51:07 -10:00
Simone Chemelli
d39b861110
Fix SamsungTV sendkey when not connected ( #55723 )
2021-09-04 13:58:34 -07:00
GitHub Action
65d14909ee
[ci skip] Translation update
2021-08-27 00:14:42 +00:00
GitHub Action
af565ea6bd
[ci skip] Translation update
2021-08-08 00:11:15 +00:00
GitHub Action
8c5620e74b
[ci skip] Translation update
2021-08-02 03:40:04 +00:00
Simone Chemelli
2025afe14b
Add MAC to SamsungTV when missing ( #53479 )
...
* Add MAC when missing
* Fix I/O
* Add test for missing MAC address
2021-07-26 16:43:05 +02:00
GitHub Action
7fa8586b17
[ci skip] Translation update
2021-07-24 00:08:57 +00:00
GitHub Action
ecf0d4398d
[ci skip] Translation update
2021-07-22 00:10:31 +00:00
Simone Chemelli
18bc2f95c8
Small log addition for samsungtv ( #53206 )
2021-07-19 23:41:30 -05:00
GitHub Action
531733da7b
[ci skip] Translation update
2021-07-19 00:09:50 +00:00
J. Nick Koston
19b4d2e4d2
Add OUIs for legacy samsungtv ( #52928 )
2021-07-15 14:43:35 +02:00
GitHub Action
7b7062dded
[ci skip] Translation update
2021-07-14 00:10:16 +00:00
Simone Chemelli
13c142a402
Fix Soundbar exclusion from SamsungTV ( #51023 )
...
* Improved check
* Fix tests
* Fix logic and tests
* Update tests
2021-07-12 08:58:53 +02:00
GitHub Action
b347226820
[ci skip] Translation update
2021-07-10 00:09:24 +00:00
J. Nick Koston
a71af8e9d3
Abort samsungtv config flow for existing hosts when the unique id is set ( #52138 )
...
Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
2021-06-25 10:31:33 -10:00
J. Nick Koston
d009f06a55
Handle connection being closed in legacy samsungtv ( #52137 )
...
* Handle connection being closed in legacy samsungtv
- Mirror the websocket behavior
Fixes
```
2021-06-24 02:54:13 ERROR (MainThread) [homeassistant.helpers.entity] Update for media_player.89_guestroom fails
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 401, in async_update_ha_state
await self.async_device_update()
File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 609, in async_device_update
raise exc
File "/usr/local/lib/python3.8/concurrent/futures/thread.py", line 57, in run
result = self.fn(*self.args, **self.kwargs)
File "/usr/src/homeassistant/homeassistant/components/samsungtv/media_player.py", line 124, in update
self._state = STATE_ON if self._bridge.is_on() else STATE_OFF
File "/usr/src/homeassistant/homeassistant/components/samsungtv/bridge.py", line 113, in is_on
return self._get_remote() is not None
File "/usr/src/homeassistant/homeassistant/components/samsungtv/bridge.py", line 232, in _get_remote
self._remote = Remote(self.config.copy())
File "/usr/local/lib/python3.8/site-packages/samsungctl/remote.py", line 9, in __init__
self.remote = RemoteLegacy(config)
File "/usr/local/lib/python3.8/site-packages/samsungctl/remote_legacy.py", line 32, in __init__
self._read_response(True)
File "/usr/local/lib/python3.8/site-packages/samsungctl/remote_legacy.py", line 77, in _read_response
raise exceptions.ConnectionClosed()
samsungctl.exceptions.ConnectionClosed
```
* add coverage
* pass instead
2021-06-25 07:31:44 +02:00
J. Nick Koston
5695710463
Add mac address to samsungtv config entry data if missing ( #51634 )
...
Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
2021-06-24 08:15:16 -10:00
GitHub Action
d805e971b4
[ci skip] Translation update
2021-06-22 00:14:17 +00:00
GitHub Action
8901e1f157
[ci skip] Translation update
2021-06-19 00:10:05 +00:00
GitHub Action
1e00e48831
[ci skip] Translation update
2021-06-14 00:09:44 +00:00
J. Nick Koston
4722fdf465
Fix race condition in samsungtv turn off ( #51716 )
...
- The state would flip flop if the update happened before the TV had fully shutdown
2021-06-10 19:24:30 +02:00
J. Nick Koston
ab490bc769
Ensure samsungtv reloads after reauth ( #51714 )
...
* Ensure samsungtv reloads after reauth
- Fixes a case of I/O in the event loop
* Ensure config entry is reloaded
2021-06-10 19:23:00 +02:00
GitHub Action
7615af35d8
[ci skip] Translation update
2021-06-07 00:18:16 +00:00
GitHub Action
c81df50191
[ci skip] Translation update
2021-06-06 00:19:43 +00:00
J. Nick Koston
8c00c24234
Ensure host is always set with samsungtv SSDP discovery ( #51527 )
...
There was a case where self._host could have been None
before _async_set_unique_id_from_udn was called
Fixes #51186
2021-06-06 00:02:36 +02:00
Simone Chemelli
3d8804bbcf
Improve logging for SamsungTV ( #51477 )
2021-06-04 09:02:39 -07:00
GitHub Action
7f6e20dcbc
[ci skip] Translation update
2021-06-03 00:26:58 +00:00
GitHub Action
2077efb207
[ci skip] Translation update
2021-05-30 00:24:18 +00:00
GitHub Action
8e87d638e1
[ci skip] Translation update
2021-05-29 00:21:56 +00:00
J. Nick Koston
b3d826f2e2
Fix samsungtv yaml import without configured name ( #51204 )
2021-05-28 16:06:17 +02:00
GitHub Action
93ada0a675
[ci skip] Translation update
2021-05-28 00:19:07 +00:00