-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Receiving following error after installation from HACS #6
Comments
Thanks for the report. From this error it looks like the libhdhomerun library was not found on your system:
Are you running Home Assistant Core or a full Home Assistant installation (formerly Hassio)? Per the installation instructions you'll need to get libhdhomerun set up in order for the integration to function. |
@burnnat I'm using the full hassio image on Pi3b. I did ran "apk add libhdhomerun" first then added hdhomerun config in configuration.yaml |
If you are running homeassistant core, you need to do something like this: |
After installing this hdhomerun plugin and adding code to configuration.yaml
hdhomerun:
sensor:
- host: 192.168.1.10
Restarted entire HomeAssistant server but sensor doesn't show up. After looking at logs, this is what I saw below. Let me know if I can help in anyway. Thanks.
Logger: homeassistant.core
Source: custom_components/hdhomerun/config_flow.py:5
First occurred: 12:16:16 AM (1 occurrences)
Last logged: 12:16:16 AM
Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/data_entry_flow.py", line 100, in async_init
flow = await self.async_create_flow(handler, context=context, data=data)
File "/usr/src/homeassistant/homeassistant/config_entries.py", line 504, in async_create_flow
integration.get_platform("config_flow")
File "/usr/src/homeassistant/homeassistant/loader.py", line 277, in get_platform
f"{self.pkg_path}.{platform_name}"
File "/usr/local/lib/python3.7/importlib/init.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "", line 1006, in _gcd_import
File "", line 983, in _find_and_load
File "", line 967, in _find_and_load_unlocked
File "", line 677, in _load_unlocked
File "", line 728, in exec_module
File "", line 219, in _call_with_frames_removed
File "/config/custom_components/hdhomerun/config_flow.py", line 5, in
from hdhr.adapter import HdhrUtility
File "/usr/local/lib/python3.7/site-packages/hdhr/adapter.py", line 13, in
from hdhr.externals import *
File "/usr/local/lib/python3.7/site-packages/hdhr/externals.py", line 5, in
import hdhr.libhdhr
File "/usr/local/lib/python3.7/site-packages/hdhr/libhdhr.py", line 14, in
library = cdll.LoadLibrary(_FILEPATH)
File "/usr/local/lib/python3.7/ctypes/init.py", line 442, in LoadLibrary
return self._dlltype(name)
File "/usr/local/lib/python3.7/ctypes/init.py", line 364, in init
self._handle = _dlopen(self._name, mode)
OSError: Error loading shared library libhdhomerun.so: No such file or directory
The text was updated successfully, but these errors were encountered: