zariiii9003
zariiii9003
The home-assistant users should encourage the home-assistant maintainers to support the CAN bus. Unless there is some problem with the current python-can implementation, i don't know what you expect us...
This library probably supports Ethernet data: https://bitbucket.org/tobylorenz/vector_blf/src/master/ But it's C++.
@hardbyte Can you check whether the readthedocs build works as configured in `.readthedocs.yml`? Or could you somehow add me to the rtd admins? Also: What do you think about the...
> I've invited you as an admin to python-can on readthedocs. Thank you! I will create another PR for furo.
@hardbyte Can you resync the rtd webhook? You can find it in Admin -> Integrations -> GitHub incoming webhook -> Resync webhook. New pull requests should trigger a rtd rebuild...
`can.detect_available_configs()` might help.
Seems like your interface is not supported.
Maybe you have another file named `can.py` or a package named `can`?
@hartkopp can you take a look? Is the functionality broken or is it just a brittle test design due to the expected result here? https://github.com/hardbyte/python-can/blob/2da28c1a1c87776618a60218b0b97800cf2deb34/test/test_socketcan.py#L279
I'd prefer to make the expected result dependent on the system byte order: ```python3 if sys.byteorder == "little": expected_result = ... else: expected_result = ... ```