'Bad byte' error
-
Hi.
I have justed connected my USB mysensors gateway. But im getting the 'bad byte' error. At first i didnt know that i should had installed the pyserial. But still after the install to pyserial 3.0.1. Im still getting the 'bad byte' error can some help, this is the log.
6-03-12 01:20:43 mysensors.mysensors: Trying to connect to /dev/ttyUSB1 16-03-12 01:20:43 mysensors.mysensors: /dev/ttyUSB1 is open... 16-03-12 01:20:43 mysensors.mysensors: Connected to /dev/ttyUSB1 16-03-12 01:20:46 mysensors.mysensors: Error decoding message from gateway, probably received bad byte. -
Hi.
I have justed connected my USB mysensors gateway. But im getting the 'bad byte' error. At first i didnt know that i should had installed the pyserial. But still after the install to pyserial 3.0.1. Im still getting the 'bad byte' error can some help, this is the log.
6-03-12 01:20:43 mysensors.mysensors: Trying to connect to /dev/ttyUSB1 16-03-12 01:20:43 mysensors.mysensors: /dev/ttyUSB1 is open... 16-03-12 01:20:43 mysensors.mysensors: Connected to /dev/ttyUSB1 16-03-12 01:20:46 mysensors.mysensors: Error decoding message from gateway, probably received bad byte.@fleshfear
Hi!
Have you tried to keep running HA after the error to see if the next message comes through alright?
For me this error usually goes away after a restart of HA.
-
Yes now the ha have been runing all night, with the gateway connected. And the 'bad byte' error is the last thing there is logge from mysensor.
-
First try to disconnect and reconnect the usb to the arduino. Start hass. Make sure you connect to the correct port after reconnecting the usb. Sometimes the arduino will change port name.
If this doesn't help try another version of pyserial. 2.5 has been the least buggy for me. You can also try 2.7.
-
I have tried connecthing and reconnecthing multiple times. But how do I down grade to 2.5, right now I have just installed 3.0.1?
-
I have tried connecthing and reconnecthing multiple times. But how do I down grade to 2.5, right now I have just installed 3.0.1?
@fleshfear
pip3 install pyserial==2.5 -
now i have 2.5. But still no luck. What to do.
-
now i allso have this in my log
16-03-12 19:45:33 mysensors.mysensors: Error decoding message from gateway, probably received partial data before connection was complete. -
now i allso have this in my log
16-03-12 19:45:33 mysensors.mysensors: Error decoding message from gateway, probably received partial data before connection was complete.@fleshfear
Nothing else is accessing the serial port?
-
no that i know of. Its a virtual machine dedicated to only ha. And i have just testet if it was the virtual enviroment there was to blame. But on indigo domistic the plugin for mysensors works and can talk to the gateway.
Im i missing something else like pyserial or?
Is the only thing needed ha and pyserial?
-
Have you rebooted the machine after installing pyserial 2.5?
You can also check that there's no remains of other pyserial versions where the python packages are installed on your machine.
What distribution are you running?
-
yep have rebooted, many times after that.
How do i check if there are any other version installed? I could not install pyserial just like you said, i had to run a
pip3 uninstall pyserialfirst.
it' a ubuntu 15.10
-
Python library files on Ubuntu are usually found in:
/usr/local/lib/pythonX.X/site-packages -
ls -la /usr/local/lib/python3.4/dist-packages/ homeassistant/ MarkupSafe-0.23.egg-info/ pytz-2015.7.dist-info/ vincenty/ homeassistant-0.15.0.dist-info/ pip/ PyYAML-3.11.egg-info/ vincenty-0.1.3.egg-info/ jinja2/ pip-8.1.0.dist-info/ requests/ yaml/ Jinja2-2.8.dist-info/ pyserial_py3k-2.5.egg-info/ requests-2.9.1.dist-info/ markupsafe/ pytz/ serial/ -
also don't know if, it is related.
but i had this in the configuration:
persistence_file: 'mysensors.json'But every time i started the HA, the log said it couldnt find the file. But efter i removed it, and create the new file i couldnt find. the new log have this:
16-03-12 22:26:47 homeassistant.bootstrap: Error during setup of component mysensors Traceback (most recent call last): File "/usr/local/lib/python3.4/dist-packages/homeassistant/bootstrap.py", line 105, in _setup_component if not component.setup(hass, config): File "/usr/local/lib/python3.4/dist-packages/homeassistant/components/mysensors.py", line 111, in setup port, persistence, persistence_file, version, baud_rate) File "/usr/local/lib/python3.4/dist-packages/homeassistant/components/mysensors.py", line 75, in setup_gateway baud=baud_rate) File "/var/opt/homeassistant/lib/mysensors/mysensors.py", line 277, in __init__ persistence_file, protocol_version) File "/var/opt/homeassistant/lib/mysensors/mysensors.py", line 32, in __init__ self._load_sensors() File "/var/opt/homeassistant/lib/mysensors/mysensors.py", line 162, in _load_sensors self._perform_file_action(self.persistence_file, 'load') File "/var/opt/homeassistant/lib/mysensors/mysensors.py", line 177, in _perform_file_action func(filename) File "/var/opt/homeassistant/lib/mysensors/mysensors.py", line 133, in _load_pickle self.sensors = pickle.load(file_handle) EOFError: Ran out of input -
the new config looks like this
mysensors: gateways: - port: '/dev/ttyUSB0' baud_rate: 38400 debug: true persistence: true version: '1.5' optimistic: true -
Which arduino model are you using for the gateway?
-
Its a nano.
-
Did you change baudrate in MyConfig.h to 38400? Otherwise I think we've found the problem.
Nano can use the default 115200 baudrate in MyConfig.h. The baudrate in HA config has to match. You can remove that line and hass will default to 115200.
-
no i haven't, so i have just removed the line, and restarted HA.
But no luck. im still getting this.Traceback (most recent call last): File "/usr/local/lib/python3.4/dist-packages/homeassistant/bootstrap.py", line 105, in _setup_component if not component.setup(hass, config): File "/usr/local/lib/python3.4/dist-packages/homeassistant/components/mysensors.py", line 111, in setup port, persistence, persistence_file, version, baud_rate) File "/usr/local/lib/python3.4/dist-packages/homeassistant/components/mysensors.py", line 75, in setup_gateway baud=baud_rate) File "/var/opt/homeassistant/lib/mysensors/mysensors.py", line 277, in __init__ persistence_file, protocol_version) File "/var/opt/homeassistant/lib/mysensors/mysensors.py", line 32, in __init__ self._load_sensors() File "/var/opt/homeassistant/lib/mysensors/mysensors.py", line 162, in _load_sensors self._perform_file_action(self.persistence_file, 'load') File "/var/opt/homeassistant/lib/mysensors/mysensors.py", line 177, in _perform_file_action func(filename) File "/var/opt/homeassistant/lib/mysensors/mysensors.py", line 133, in _load_pickle self.sensors = pickle.load(file_handle) EOFError: Ran out of input