GithubHelp home page GithubHelp logo

home-assistant-elero's Introduction

🛠 Status: In Development

This lib is currently in development. I encourage you to use it and give me your feedback, but there are things that haven't been finalized yet and you can expect some changes.

Elero Logo Home Assistant Logo

Elero Python lib to the Home Assistant home automation platform

Home Assistant is a home automation platform running on Python 3. It is able to track and control all devices at home and offer a platform for automating control.

This elero platform allows you to control different Elero components/devices (such as venetian blinds, a roller shutters, tubular motors, electrical devices, rolling door drives, etc.).


Prerequisite

The Elero Transmitter Stick is a 15-channel handheld radio transmitter for bidirectional communication between transmitter and receiver(s).

To use the receiver control of the Home Assistant, at least one receiver must be taught-in into the Elero Transmitter Stick. For further details of the learning procedure please visit the Elero's Downloads webpage and find the Centero Operation instruction

Limitations

  1. According to the documentation of the Elero USB Transmitter, more Elero devices could be controlled at the same time with one command. However, It does not work. This causes many timing and control problems. I tried to contact with Elero via mail however the company has so far given no answer to my question about this error.

Elero features

The Elero Transmitter stick supports the following Elero device features:

  • up
  • down
  • stop
  • intermediate position
  • ventilation / turning position

Configuration of Elero platform

As many transmitters can be used as many needed. You could use as many transmitters as you want. So, you can control more than 15 devices. The connected transmitter stickes are discoveried by automaticly, so by default you do not need to configure them. In some special cases, you can configure every Elero USB Transmitter stick in your installation, add and setup the following settings to your configuration.yaml file to every stick:

  • serial_number:
    • description: The serial number of the given Elero Transmitter Stick.
    • required: false
    • type: string
    • default: -
  • baudrate:
    • description: Baud Rate as bits per second.
    • required: false
    • type: integer
    • default: 38400
  • bytesize:
    • description: Number of data bits.
    • required: false
    • type: integer
    • default: 8
  • parity:
    • description: Enable parity checking.
    • required: false
    • type: string
    • default: "N"
  • stopbits:
    • description: Number of stop bits.
    • required: false
    • type: integer
    • default:* 1

The connected Elero transmitters are automatically recognized and configured by HA automatically. The serial numbers of the connected transmitters can be found in the HA log and are needed for the further configuration. Make sure you have the logger set to the INFO level to see the log message. You can do this by adding following to the config file configuration.yaml:

logger:
  default: info

Then you should see the following long line after a restart of HA:

Elero - an Elero Transmitter Stick is found on port: '<serial port>' with serial number: '<serial number>'.

Make sure to disable the logger config again afterwards to avoid excessive logging!

The given serial number of a transmitter should be used to match a HA channel to the transmitter in the yaml config file.

The connected devices could be configured with the followings in the configuration.yaml file:

Example of the configuration:

# Example configuration.yaml entry
elero:
    transmitters:
        - serial_number: 00000000
          baudrate: 38400
          bytesize: 8
          parity: 'N'
          stopbits: 1

Configuration of the Elero cover component

To enable an Elero component like a covers in an installation, add the following to into the configuration.yaml file:

  • serial_number:
    • description: The serial number of the given Elero Transmitter Stick.
    • required: true
    • type: integer
    • default: -
    • value: your choose
  • name:
    • description: Name of the cover that is displayed on the UI.
    • required: true
    • type: string
    • default: -
    • value: your choose
  • channel:
    • description: The learned channel number on the Elero USB Stick.
    • required: true
    • type: integer
    • default: -
    • value: one number between 1-15
  • device class:
    • description: The class of the cover. It affects the device state and icon that is displayed on the UI.
    • required: true
    • type: string
    • default: -
    • value:
      • venetian blind
      • roller shutter
      • awning
      • rolling door
  • supported features:
    • description: Functionalities of the cover.
    • required: true
    • type: string
    • default: -
    • value:
      • up (Elero UP)
      • down (Elero DOWN)
      • stop (Elero STOP)
      • set_position (0=DOWN, 25=VENT, 50=MOVING/UNDEF, 75=INT, 100=UP)
      • open_tilt (Elero INTERMEDIATE)
      • close_tilt (Elero VENTILATION)
      • stop_tilt (Elero STOP)
      • set_tilt_position (unsupported)

Example of a simple cover setup:

# Example configuration.yaml entry
cover:
    - platform: elero
      covers:
          bathroom_small:
              serial_number: 00000000
              name: Shower
              channel: 1
              device_class: roller shutter
              supported_features:
                  - up
                  - down
                  - stop

Cover 'Position' and 'Tilt position' Sliders

Unfortunately, by default, the Position slider is not configurable on a cover so, the 'step' of the slider either. Thus, the set_position and the set_tilt_position functions are not usable. Another problem that the Elero devices are not supporting these functions.

For the Elero 'intermediate' function use the open_tilt HA function and the Elero 'ventilation' function use the close_tilt HA function.

Nevertheless, these controls are shown and useable only if the pop-up window of the given cover is open.

Alternative methods for the Elero 'intermediate' and the 'ventilation' functions:

  1. Call a Service
entities:
  - name: Intermediate
    service: cover.close_cover_tilt
    service_data:
      entity_id: cover.all_cover_group
    type: call-service
  - name: Ventilation
    service: cover.open_cover_tilt
    service_data:
      entity_id: cover.all_cover_group
    type: call-service
  1. An input_number slider with automation.
input_number:
    diningroom_set_position:
        name: Position
        mode: slider
        initial: 0
        min: 0
        max: 100
        step: 25

automation:
  - alias: diningroom_set_position
    trigger:
        platform: numeric_state
        entity_id: input_number.diningroom_set_position
        to: 25
    action:
        - service: cover.close_cover_tilt
          entity_id:
            - cover.diningroom
  1. An input_select Scene with automation.
input_select:
    scene_diningroom:
        name: Scene
        options:
            - open
            - close
            - stop
            - intermediate
            - ventilation

automation:
  - alias: Diningroom scene
    trigger:
      platform: state
      entity_id: input_select.scene_diningroom
      to: intermediate
    action:
        - service: cover.close_cover_tilt
          entity_id:
            - cover.diningroom

Cover groups

To create Cover Groups in an installation, add the following into the configuration.yaml file:

# Example configuration.yaml entry
cover:
    - platform: group
      name: "All Cover"
      entities:
          - cover.shower
          - cover.george

Installation of the lib

Manual Installation

Just copy the contents of the custom_components folder into the Home Assistant ../config/custom_components/ folder.

Configurate the /config/configuration.yaml file and its all linked files like covers and groups, etc. Restart the Home Assistant.

HACS Installation

You can use HACS to install the custom component. You need to add this repository https://github.com/W00D00/home-assistant-elero as a custom repository in HACS.

Example config files

Some example files can be found in the config folder as a help or starting point.


Automation

It is possible to specify triggers for automation of your covers.

# Example automations.yaml entry
# Covers
    - alias: 'Close the covers after sunset'
      trigger:
        platform: sun
        event: sunset
        offset: '+00:30:00'
      action:
        service: cover.close_cover
        entity_id: cover.all_Cover

Report an issue:

Please use the Github Issues section to report a problem or feature request: https://github.com/W00D00/home-assistant-elero/issues/new

Known issues:

Please see the Issues section: https://github.com/W00D00/home-assistant-elero/issues

Contribution:

Please, Test first!

For minor fixes and documentation, please go ahead and submit a pull request. A gentle introduction to the process can be found here.

Check out the list of issues. Working on them is a great way to move the project forward.

Larger changes (rewriting parts of existing code from scratch, adding new functions) should generally be discussed by opening an issue first.

Feature branches with lots of small commits (especially titled "oops", "fix typo", "forgot to add file", etc.) should be squashed before opening a pull request. At the same time, please refrain from putting multiple unrelated changes into a single pull request.


If you have any question or you have faced with trouble, do not hesitate to contact me, all comments, insight, criticism is welcomed!


Version

Remote connection

Connect the Elero component to an USB stick that is connected to a Raspberry PI

Installation of ser2net on a Raspberry PI

sudo rpi-update

sudo apt-get install ser2net

ser2net version 4.3.3 will be installed and a YAML configuration will be used.

Configuration of ser2net

Connect the Elero transmitter stick to the Raspberry PI

For finding the ID of Elero transmitter call

ls /dev/serial/by-id

Update the ser2net.yaml configuration

sudo nano /etc/ser2net.yaml

and add the following configuration to the file. Use the ID of your stick.

connection: &con02
  accepter: tcp,20109
  enable: off
 #connector: serialdev,/dev/ttyUSB1,38400n81,local
  connector: serialdev,/dev/serial/by-id/usb-elero_GmbH_Transmitter_Stick_AU00JHUU-if00-port0,38400n81,local
  options:
    kickolduser: true

Fix problems of starting ser2net service after reboot

The manually ser2net application has some problems after raspberry pi's reboot. The USB-sticks can't be hosted as TCP ports and the sudo service ser2net status shows Invalid name/port.

This can be simply fixed by a manual restart of the service sudo service ser2net restart.

This manual restart can be automatically called using crontab. Add the restart 30s after a reboot (Absolute paths must be set in the crontab)

sudo crontab -e

and add the following line to the file

@reboot /usr/bin/sleep 30 && /usr/sbin/service ser2net restart

Helper tools

Helper command to show open ports: ss -tulw

Helper script list_ports.py to show information of the USB device

from serial.tools import list_ports

if __name__ == "__main__":
  
  for cp in list_ports.comports():
    print(cp)
    print("Device:", cp.device)
    print("Serial Number:", cp.serial_number)
    print("Product:", cp.product)
    print("Manufacturer:", cp.manufacturer)
    print("----")

Homeassistant configuration of remote transmitters

The following values must be set to configure the Elero component to use remote transmitters. The serial number, the IP address and the port must match with the values configured before.

elero:
    remote_transmitters:
        - serial_number: AU00JHUU
          address: "192.168.10.29:20109"

home-assistant-elero's People

Contributors

caco3 avatar dfigus avatar matrixx567 avatar tinkerdudeno1 avatar w00d00 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

home-assistant-elero's Issues

Elero Stick not discovered in official HA-Docker image

First of all: Thanks for your efforts in this project. I'm new to HA and was excited to see someone took a step to get the Elero stuff going. I have HA running in Docker using their official image. Unfortunately, discovery does not seem to be working in there.

Let me try to sum up what I understand:
Discovery is done here in your code

def discover(self):
"""Discover the connected Elero Transmitter Sticks."""
for cp in list_ports.comports():
if (
cp
and cp.manufacturer
and DEFAULT_BRAND in cp.manufacturer
and cp.product
and DEFAULT_PRODUCT in cp.product
):
_LOGGER.info(
f"Elero Transmitter Stick is found on port: "
f"'{cp.device}' with serial number: '{cp.serial_number}'."
)

When I e.g. print cp.manufacturer within that loop, it's always None. Just like lsusb on the system returns no detailed info:

Bus 001 Device 009: ID 10c4:ea60
Bus 003 Device 001: ID 1d6b:0002
Bus 002 Device 002: ID 2109:0812
Bus 001 Device 001: ID 1d6b:0002
Bus 001 Device 003: ID 2109:2812
Bus 001 Device 002: ID 2109:3431
Bus 004 Device 001: ID 1d6b:0003
Bus 004 Device 002: ID fb5d:0001
Bus 002 Device 001: ID 1d6b:0003
Bus 001 Device 010: ID 0403:6001

However, usb-devices shows everything we need:

T:  Bus=01 Lev=03 Prnt=03 Port=00 Cnt=01 Dev#= 10 Spd=12  MxCh= 0
D:  Ver= 2.00 Cls=00(>ifc ) Sub=00 Prot=00 MxPS= 8 #Cfgs=  1
P:  Vendor=0403 ProdID=6001 Rev=06.00
S:  Manufacturer=elero GmbH
S:  Product=Transmitter Stick
S:  SerialNumber=XXXXXXXX
C:  #Ifs= 1 Cfg#= 1 Atr=a0 MxPwr=64mA
I:  If#=0x0 Alt= 0 #EPs= 2 Cls=ff(vend.) Sub=ff Prot=ff Driver=ftdi_sio

The info is there, it's just not being used by the pyserial package. All this is a limitation of the Alpine base image HA uses, I have yet to find a different image with the same problems. I think it should be possible to at least add additional queries in the code in case the "traditional" discovery via pyserial fails but it would be quite a rewrite of the code.

shutters often do not react / move

With the newest version of the library (using HA 0.103.4), I have more and more the situation, that the shutters do not react / move when sending a command. I do not get any error message. It is just that the arrow is grey for one second and then it became black again and nothings happens: the shutter does not move, no error message, etc.
When I repeat it for a few times, then it works again.
I feel, that does not happen with older versions before or even not that often.

It happens, when controlling just one shutter and also when trying to control a group of shutters.

Homekit possible with elero.cover entities?

Hi,
thanks for your great work with this custom_component!
Today I tried to add my new shiny cover's to a Homekit Bridge; unfortunately, it doesn't work, due to:

2020-07-22 16:22:17 DEBUG (SyncWorker_9) [homeassistant.components.homekit.accessories] Add "cover.buro" as "WindowCoveringBasic"
2020-07-22 16:22:17 DEBUG (SyncWorker_9) [pyhap.characteristic] set_value: Name to Rollo
2020-07-22 16:22:17 DEBUG (SyncWorker_9) [pyhap.characteristic] set_value: SerialNumber to default
2020-07-22 16:22:17 DEBUG (SyncWorker_9) [pyhap.characteristic] set_value: FirmwareRevision to 0.112.4
2020-07-22 16:22:17 DEBUG (SyncWorker_9) [pyhap.characteristic] set_value: Manufacturer to Home Assistant Cover
2020-07-22 16:22:17 DEBUG (SyncWorker_9) [pyhap.characteristic] set_value: Model to Cover
2020-07-22 16:22:17 DEBUG (SyncWorker_9) [pyhap.characteristic] set_value: SerialNumber to cover.buro
2020-07-22 16:22:17 DEBUG (SyncWorker_9) [pyhap.characteristic] set_value: PositionState to 2
2020-07-22 16:22:17 DEBUG (SyncWorker_9) [pyhap.characteristic] set_value: CurrentPosition to 100
2020-07-22 16:22:17 DEBUG (SyncWorker_9) [pyhap.characteristic] set_value: TargetPosition to 100
2020-07-22 16:22:17 ERROR (SyncWorker_9) [homeassistant.components.homekit] Failed to create a HomeKit accessory for cover.buro
Traceback (most recent call last):
  File "/usr/src/homeassistant/homeassistant/components/homekit/__init__.py", line 446, in add_bridge_accessory
    acc = get_accessory(self.hass, self.driver, state, aid, conf)
  File "/usr/src/homeassistant/homeassistant/components/homekit/accessories.py", line 224, in get_accessory
    return TYPES[a_type](hass, driver, name, state.entity_id, aid, config)
  File "/usr/src/homeassistant/homeassistant/components/homekit/type_covers.py", line 302, in __init__
    self.async_update_state(state)
  File "/usr/src/homeassistant/homeassistant/components/homekit/type_covers.py", line 349, in async_update_state
    super().async_update_state(new_state)
  File "/usr/src/homeassistant/homeassistant/components/homekit/type_covers.py", line 199, in async_update_state
    if self.char_current_tilt.value != current_tilt:
AttributeError: 'WindowCoveringBasic' object has no attribute 'char_current_tilt'

Is there a way to fake the tilt attributes? I don't need specific positions, I'm only interested in up/down/stop, which is working perfectly via HA.

Group control

Hi @W00D00

Thank you very much for this great component!

I am just learning to use it.

How is it possible to control multiple covers at the same time?
Eg. my living room has two covers and I would like to open/close them always together.
I was able to create a group, how ever it is empty and has no control.

operation of groups is often not working

I often have the issue that when trying to control a complete group of shutters, only one or two shutters are moved and the rest not moving.

This is one of my groups:

- platform: group
  name: "WohnEssZimmer"
  entities:
      - cover.WohnzimmerTuer
      - cover.WohnzimmerRechts
      - cover.WohnzimmerLinks
      - cover.KuecheFenster
      - cover.KuecheTuer
      - cover.Abstellkammer

- platform: elero
  covers:
      rolloarbeitszimmer:
          serial_number: A503EN6C
          name: Arbeitszimmer
          channel: 1
          device_class: roller shutter
          supported_features:
              - up
              - down
              - stop
              - set_position
              - set_tilt_position
        
      rollobad:
          serial_number: A503EN6C
          name: Bad
          channel: 2
          device_class: roller shutter
          supported_features:
              - up
              - down
              - stop
      rolloschlafzimmerrechts:
          serial_number: A503EN6C
          name: SchlafzimmerRechts
          channel: 3
          device_class: roller shutter
          supported_features:
              - up
              - down
              - stop
      rolloschlafzimmermitte:
          serial_number: A503EN6C
          name: SchlafzimmerMitte
          channel: 4
          device_class: roller shutter
          supported_features:
              - up
              - down
              - stop
      rolloschlafzimmerlinks:
          serial_number: A503EN6C
          name: SchlafzimmerLinks
          channel: 5
          device_class: roller shutter
          supported_features:
              - up
              - down
              - stop
      rollokinderzimmerfenster:
          serial_number: A503EN6C
          name: KinderzimmerFenster
          channel: 6
          device_class: roller shutter
          supported_features:
              - up
              - down
              - stop
      rollokinderzimmertuer:
          serial_number: A503EN6C
          name: KinderzimmerTuer
          channel: 7
          device_class: roller shutter
          supported_features:
              - up
              - down
              - stop
      rollowohnzimmertuer:
          serial_number: A503EN6C
          name: WohnzimmerTuer
          channel: 8
          device_class: roller shutter
          supported_features:
              - up
              - down
              - stop
      rollowohnzimmerrechts:
          serial_number: A503EN6C
          name: WohnzimmerRechts
          channel: 9
          device_class: roller shutter
          supported_features:
              - up
              - down
              - stop
      rollowohnzimmerlinks:
          serial_number: A503EN6C
          name: WohnzimmerLinks
          channel: 10
          device_class: roller shutter
          supported_features:
              - up
              - down
              - stop
      rollokuechefenster:
          serial_number: A503EN6C
          name: KuecheFenster
          channel: 11
          device_class: roller shutter
          supported_features:
              - up
              - down
              - stop
      rollokuechetuer:
          serial_number: A503EN6C
          name: KuecheTuer
          channel: 12
          device_class: roller shutter
          supported_features:
              - up
              - down
              - stop
      rolloabstellkammer:
          serial_number: A503EN6C
          name: Abstellkammer
          channel: 13
          device_class: roller shutter
          supported_features:
              - up
              - down
              - stop

This is what I can find in the logfile when I try to move a group of shutters (here all shutters from "WohnEssZimmer" are moved):

2019-11-11 19:06:28 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial command: 'b'\xaa\x04N\x00\x08\xfc''.
2019-11-11 19:06:28 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial response: 'b'\xaa\x05M\x00\x08\x02\xfa''.
2019-11-11 19:06:28 DEBUG (SyncWorker_13) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial command: 'b'\xaa\x04N\x08\x00\xfc''.
2019-11-11 19:06:28 DEBUG (SyncWorker_6) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial command: 'b'\xaa\x05L\x00\x80@E''.
2019-11-11 19:06:28 DEBUG (SyncWorker_6) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial response: 'b'\xaa\x05M\x00\x80\x0by''.
2019-11-11 19:06:28 DEBUG (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial command: 'b'\xaa\x04N\x00\x01\x03''.
2019-11-11 19:06:28 DEBUG (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial command: 'b'\xaa\x05L\x01\x00@\xc4''.
2019-11-11 19:06:30 DEBUG (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial command: 'b'\xaa\x04N\x00@\xc4''.
2019-11-11 19:06:30 DEBUG (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial response: 'b'\x05M\x01\x00\x0b\xf8\xaa''.
2019-11-11 19:06:30 WARNING (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' status is unknown: '248'.
2019-11-11 19:06:30 ERROR (SyncWorker_19) [custom_components.elero] Elero - The response not just one channel: '{1, 2, 4}'.
2019-11-11 19:06:30 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial command: 'b'\xaa\x04N\x00\x10\xf4''.
2019-11-11 19:06:30 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial response: 'b'\x05M\x00@\x02\xc2\xaa''.
2019-11-11 19:06:30 WARNING (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' status is unknown: '194'.
2019-11-11 19:06:30 ERROR (SyncWorker_15) [custom_components.elero] Elero - The response not just one channel: '{2, 15}'.
2019-11-11 19:06:30 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial command: 'b'\xaa\x04N\x04\x00\x00''.
2019-11-11 19:06:30 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial response: 'b'\x05M\x00\x10\x04\xf0\xaa''.
2019-11-11 19:06:30 WARNING (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' status is unknown: '240'.
2019-11-11 19:06:30 ERROR (SyncWorker_0) [custom_components.elero] Elero - The response not just one channel: '{3, 13}'.
2019-11-11 19:06:30 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial command: 'b'\xaa\x04N\x10\x00\xf4''.
2019-11-11 19:06:30 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial response: 'b'\x05M\x04\x00\x01\xff\xaa''.
2019-11-11 19:06:30 WARNING (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' status is unknown: '255'.
2019-11-11 19:06:30 WARNING (SyncWorker_1) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:06:30 DEBUG (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial command: 'b'\xaa\x04N\x00\x04\x00''.
2019-11-11 19:06:31 DEBUG (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial response: 'b'\x05M\x10\x00\n\xea\xaa''.
2019-11-11 19:06:31 WARNING (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' status is unknown: '234'.
2019-11-11 19:06:31 ERROR (SyncWorker_7) [custom_components.elero] Elero - The response not just one channel: '{2, 4}'.
2019-11-11 19:06:31 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial command: 'b'\xaa\x04N\x00\x02\x02''.
2019-11-11 19:06:31 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial response: 'b'\x05M\x00\x04\x02\xfe\xaa''.
2019-11-11 19:06:31 WARNING (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' status is unknown: '254'.
2019-11-11 19:06:31 ERROR (SyncWorker_11) [custom_components.elero] Elero - The response not just one channel: '{2, 11}'.
2019-11-11 19:06:31 DEBUG (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial command: 'b'\xaa\x04N\x00 \xe4''.
2019-11-11 19:06:31 DEBUG (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial response: 'b'\x05M\x00\x02\x01\x01\xaa''.
2019-11-11 19:06:31 ERROR (SyncWorker_3) [custom_components.elero] Elero - The response not just one channel: '{1, 10}'.
2019-11-11 19:06:31 DEBUG (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial command: 'b'\xaa\x04N\x01\x00\x03''.
2019-11-11 19:06:32 DEBUG (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial response: 'b'\x05M\x00 \x02\xe2\xaa''.
2019-11-11 19:06:32 WARNING (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' status is unknown: '226'.
2019-11-11 19:06:32 ERROR (SyncWorker_17) [custom_components.elero] Elero - The response not just one channel: '{2, 14}'.
2019-11-11 19:06:32 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial command: 'b'\xaa\x04N\x02\x00\x02''.
2019-11-11 19:06:33 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial response: 'b'\x05M\x01\x00\x0b\xf8\xaa''.
2019-11-11 19:06:33 WARNING (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' status is unknown: '248'.
2019-11-11 19:06:33 ERROR (SyncWorker_12) [custom_components.elero] Elero - The response not just one channel: '{1, 2, 4}'.
2019-11-11 19:06:33 DEBUG (SyncWorker_10) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial command: 'b'\xaa\x04N\x00\x80\x84''.
2019-11-11 19:06:33 DEBUG (SyncWorker_10) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial response: 'b'\x05M\x02\x00\x01\x01\xaa''.
2019-11-11 19:06:44 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial command: 'b'\xaa\x04N\x00\x02\x02''.
2019-11-11 19:06:44 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial response: 'b'\x05M\x00\x80\x0by\xaa''.
2019-11-11 19:06:44 WARNING (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' status is unknown: '121'.
2019-11-11 19:06:44 ERROR (SyncWorker_1) [custom_components.elero] Elero - The response not just one channel: '{16, 1, 2, 4}'.
2019-11-11 19:06:44 DEBUG (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial command: 'b'\xaa\x04N\x00\x08\xfc''.
2019-11-11 19:06:44 DEBUG (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial response: 'b'\x05M\x00\x02\x01\x01\xaa''.
2019-11-11 19:06:44 ERROR (SyncWorker_7) [custom_components.elero] Elero - The response not just one channel: '{1, 10}'.
2019-11-11 19:06:44 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial command: 'b'\xaa\x04N\x00@\xc4''.
2019-11-11 19:06:44 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial response: 'b'\x05M\x00\x08\x02\xfa\xaa''.
2019-11-11 19:06:44 WARNING (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' status is unknown: '250'.
2019-11-11 19:06:44 ERROR (SyncWorker_11) [custom_components.elero] Elero - The response not just one channel: '{2, 12}'.
2019-11-11 19:06:44 DEBUG (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial command: 'b'\xaa\x04N\x01\x00\x03''.
2019-11-11 19:06:45 DEBUG (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial response: 'b'\x05M\x00@\x02\xc2\xaa''.
2019-11-11 19:06:45 WARNING (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' status is unknown: '194'.
2019-11-11 19:06:45 ERROR (SyncWorker_3) [custom_components.elero] Elero - The response not just one channel: '{2, 15}'.
2019-11-11 19:06:45 DEBUG (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial command: 'b'\xaa\x04N\x00\x01\x03''.
2019-11-11 19:06:45 DEBUG (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial response: 'b'\x05M\x01\x00\x0b\xf8\xaa''.
2019-11-11 19:06:45 WARNING (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' status is unknown: '248'.
2019-11-11 19:06:45 ERROR (SyncWorker_17) [custom_components.elero] Elero - The response not just one channel: '{1, 2, 4}'.
2019-11-11 19:06:45 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial command: 'b'\xaa\x04N\x00\x80\x84''.
2019-11-11 19:06:45 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial response: 'b'\x05M\x00\x01\x01\x02\xaa''.
2019-11-11 19:06:45 ERROR (SyncWorker_12) [custom_components.elero] Elero - The response not just one channel: '{9, 1}'.
2019-11-11 19:06:45 DEBUG (SyncWorker_10) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial command: 'b'\xaa\x04N\x04\x00\x00''.
2019-11-11 19:06:46 DEBUG (SyncWorker_10) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial response: 'b'\x05M\x00\x80\x0by\xaa''.
2019-11-11 19:06:46 WARNING (SyncWorker_10) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' status is unknown: '121'.
2019-11-11 19:06:46 ERROR (SyncWorker_10) [custom_components.elero] Elero - The response not just one channel: '{16, 1, 2, 4}'.
2019-11-11 19:06:46 DEBUG (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial command: 'b'\xaa\x04N\x10\x00\xf4''.
2019-11-11 19:06:46 DEBUG (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial response: 'b'\x05M\x04\x00\x01\xff\xaa''.
2019-11-11 19:06:46 WARNING (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' status is unknown: '255'.
2019-11-11 19:06:46 WARNING (SyncWorker_19) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:06:46 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial command: 'b'\xaa\x04N\x00\x04\x00''.
2019-11-11 19:06:46 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial response: 'b'\x05M\x10\x00\n\xea\xaa''.
2019-11-11 19:06:46 WARNING (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' status is unknown: '234'.
2019-11-11 19:06:46 ERROR (SyncWorker_15) [custom_components.elero] Elero - The response not just one channel: '{2, 4}'.
2019-11-11 19:06:46 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial command: 'b'\xaa\x04N\x00 \xe4''.
2019-11-11 19:06:46 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial response: 'b'\x05M\x00\x04\x02\xfe\xaa''.
2019-11-11 19:06:46 WARNING (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' status is unknown: '254'.
2019-11-11 19:06:46 ERROR (SyncWorker_14) [custom_components.elero] Elero - The response not just one channel: '{2, 11}'.
2019-11-11 19:06:46 DEBUG (SyncWorker_6) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial command: 'b'\xaa\x04N\x08\x00\xfc''.
2019-11-11 19:06:47 DEBUG (SyncWorker_6) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial response: 'b'\x05M\x00 \x02\xe2\xaa''.
2019-11-11 19:06:47 WARNING (SyncWorker_6) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' status is unknown: '226'.
2019-11-11 19:06:47 ERROR (SyncWorker_6) [custom_components.elero] Elero - The response not just one channel: '{2, 14}'.
2019-11-11 19:06:47 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial command: 'b'\xaa\x04N\x02\x00\x02''.
2019-11-11 19:06:48 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial response: 'b'\x05M\x08\x00\x01\xfb\xaa''.
2019-11-11 19:06:48 WARNING (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' status is unknown: '251'.
2019-11-11 19:06:48 WARNING (SyncWorker_1) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:06:48 DEBUG (SyncWorker_18) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial command: 'b'\xaa\x04N\x00\x10\xf4''.
2019-11-11 19:06:48 DEBUG (SyncWorker_18) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial response: 'b'\x05M\x02\x00\x01\x01\xaa''.
2019-11-11 19:07:00 DEBUG (SyncWorker_10) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial command: 'b'\xaa\x04N\x00\x02\x02''.
2019-11-11 19:07:00 DEBUG (SyncWorker_10) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial response: 'b'\x05M\x00\x10\x04\xf0\xaa''.
2019-11-11 19:07:00 WARNING (SyncWorker_10) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' status is unknown: '240'.
2019-11-11 19:07:00 ERROR (SyncWorker_10) [custom_components.elero] Elero - The response not just one channel: '{3, 13}'.
2019-11-11 19:07:00 DEBUG (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial command: 'b'\xaa\x04N\x00\x08\xfc''.
2019-11-11 19:07:00 DEBUG (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial response: 'b'\x05M\x00\x02\x01\x01\xaa''.
2019-11-11 19:07:00 ERROR (SyncWorker_19) [custom_components.elero] Elero - The response not just one channel: '{1, 10}'.
2019-11-11 19:07:00 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial command: 'b'\xaa\x04N\x00\x10\xf4''.
2019-11-11 19:07:01 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial response: 'b'\x05M\x00\x08\x02\xfa\xaa''.
2019-11-11 19:07:01 WARNING (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' status is unknown: '250'.
2019-11-11 19:07:01 ERROR (SyncWorker_15) [custom_components.elero] Elero - The response not just one channel: '{2, 12}'.
2019-11-11 19:07:01 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial command: 'b'\xaa\x04N\x00@\xc4''.
2019-11-11 19:07:01 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial response: 'b'\x05M\x00\x10\x04\xf0\xaa''.
2019-11-11 19:07:01 WARNING (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' status is unknown: '240'.
2019-11-11 19:07:01 ERROR (SyncWorker_14) [custom_components.elero] Elero - The response not just one channel: '{3, 13}'.
2019-11-11 19:07:01 DEBUG (SyncWorker_6) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial command: 'b'\xaa\x04N\x01\x00\x03''.
2019-11-11 19:07:02 DEBUG (SyncWorker_6) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial response: 'b'\x05M\x00@\x02\xc2\xaa''.
2019-11-11 19:07:02 WARNING (SyncWorker_6) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' status is unknown: '194'.
2019-11-11 19:07:02 ERROR (SyncWorker_6) [custom_components.elero] Elero - The response not just one channel: '{2, 15}'.
2019-11-11 19:07:02 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial command: 'b'\xaa\x04N\x02\x00\x02''.
2019-11-11 19:07:03 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial response: 'b'\x05M\x01\x00\x02\x01\xaa''.
2019-11-11 19:07:03 DEBUG (SyncWorker_5) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial command: 'b'\xaa\x04N\x10\x00\xf4''.
2019-11-11 19:07:03 DEBUG (SyncWorker_5) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial response: 'b'\x05M\x02\x00\x01\x01\xaa''.
2019-11-11 19:07:03 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial command: 'b'\xaa\x04N\x04\x00\x00''.
2019-11-11 19:07:03 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial response: 'b'\x05M\x10\x00\x01\xf3\xaa''.
2019-11-11 19:07:03 WARNING (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' status is unknown: '243'.
2019-11-11 19:07:03 WARNING (SyncWorker_8) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:07:03 DEBUG (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial command: 'b'\xaa\x04N\x00\x80\x84''.
2019-11-11 19:07:03 DEBUG (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial response: 'b'\x05M\x04\x00\x01\xff\xaa''.
2019-11-11 19:07:03 WARNING (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' status is unknown: '255'.
2019-11-11 19:07:03 WARNING (SyncWorker_19) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:07:03 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial command: 'b'\xaa\x04N\x08\x00\xfc''.
2019-11-11 19:07:03 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial response: 'b'\x05M\x00\x80\x02\x82\xaa''.
2019-11-11 19:07:03 WARNING (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' status is unknown: '130'.
2019-11-11 19:07:03 ERROR (SyncWorker_15) [custom_components.elero] Elero - The response not just one channel: '{16, 2}'.
2019-11-11 19:07:03 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial command: 'b'\xaa\x04N\x00\x04\x00''.
2019-11-11 19:07:03 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial response: 'b'\x05M\x08\x00\x01\xfb\xaa''.
2019-11-11 19:07:03 WARNING (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' status is unknown: '251'.
2019-11-11 19:07:03 WARNING (SyncWorker_14) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:07:03 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial command: 'b'\xaa\x04N\x00\x01\x03''.
2019-11-11 19:07:03 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial response: 'b'\x05M\x00\x04\x02\xfe\xaa''.
2019-11-11 19:07:03 WARNING (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' status is unknown: '254'.
2019-11-11 19:07:03 ERROR (SyncWorker_11) [custom_components.elero] Elero - The response not just one channel: '{2, 11}'.
2019-11-11 19:07:03 DEBUG (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial command: 'b'\xaa\x04N\x00 \xe4''.
2019-11-11 19:07:03 DEBUG (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial response: 'b'\x05M\x00\x01\x01\x02\xaa''.
2019-11-11 19:07:03 ERROR (SyncWorker_3) [custom_components.elero] Elero - The response not just one channel: '{9, 1}'.
2019-11-11 19:07:16 DEBUG (SyncWorker_13) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial command: 'b'\xaa\x04N\x00\x02\x02''.
2019-11-11 19:07:16 DEBUG (SyncWorker_13) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial response: 'b'\x05M\x00 \x02\xe2\xaa''.
2019-11-11 19:07:16 WARNING (SyncWorker_13) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' status is unknown: '226'.
2019-11-11 19:07:16 ERROR (SyncWorker_13) [custom_components.elero] Elero - The response not just one channel: '{2, 14}'.
2019-11-11 19:07:16 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial command: 'b'\xaa\x04N\x00\x04\x00''.
2019-11-11 19:07:16 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial response: 'b'\x05M\x00\x02\x01\x01\xaa''.
2019-11-11 19:07:16 ERROR (SyncWorker_0) [custom_components.elero] Elero - The response not just one channel: '{1, 10}'.
2019-11-11 19:07:16 DEBUG (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial command: 'b'\xaa\x04N\x00 \xe4''.
2019-11-11 19:07:16 DEBUG (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial response: 'b'\x05M\x00\x04\x02\xfe\xaa''.
2019-11-11 19:07:16 WARNING (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' status is unknown: '254'.
2019-11-11 19:07:16 ERROR (SyncWorker_19) [custom_components.elero] Elero - The response not just one channel: '{2, 11}'.
2019-11-11 19:07:16 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial command: 'b'\xaa\x04N\x04\x00\x00''.
2019-11-11 19:07:16 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial response: 'b'\x05M\x00 \x02\xe2\xaa''.
2019-11-11 19:07:16 WARNING (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' status is unknown: '226'.
2019-11-11 19:07:16 ERROR (SyncWorker_15) [custom_components.elero] Elero - The response not just one channel: '{2, 14}'.
2019-11-11 19:07:16 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial command: 'b'\xaa\x04N\x00@\xc4''.
2019-11-11 19:07:16 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial response: 'b'\x05M\x04\x00\x01\xff\xaa''.
2019-11-11 19:07:16 WARNING (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' status is unknown: '255'.
2019-11-11 19:07:16 WARNING (SyncWorker_14) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:07:16 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial command: 'b'\xaa\x04N\x10\x00\xf4''.
2019-11-11 19:07:16 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial response: 'b'\x05M\x00@\x02\xc2\xaa''.
2019-11-11 19:07:16 WARNING (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' status is unknown: '194'.
2019-11-11 19:07:16 ERROR (SyncWorker_11) [custom_components.elero] Elero - The response not just one channel: '{2, 15}'.
2019-11-11 19:07:16 DEBUG (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial command: 'b'\xaa\x04N\x02\x00\x02''.
2019-11-11 19:07:17 DEBUG (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial response: 'b'\x05M\x10\x00\x01\xf3\xaa''.
2019-11-11 19:07:17 WARNING (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' status is unknown: '243'.
2019-11-11 19:07:17 WARNING (SyncWorker_3) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:07:17 DEBUG (SyncWorker_16) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial command: 'b'\xaa\x04N\x00\x10\xf4''.
2019-11-11 19:07:17 DEBUG (SyncWorker_16) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial response: 'b'\x05M\x02\x00\x01\x01\xaa''.
2019-11-11 19:07:17 DEBUG (SyncWorker_5) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial command: 'b'\xaa\x04N\x08\x00\xfc''.
2019-11-11 19:07:18 DEBUG (SyncWorker_5) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial response: 'b'\x05M\x00\x10\x04\xf0\xaa''.
2019-11-11 19:07:18 WARNING (SyncWorker_5) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' status is unknown: '240'.
2019-11-11 19:07:18 ERROR (SyncWorker_5) [custom_components.elero] Elero - The response not just one channel: '{3, 13}'.
2019-11-11 19:07:18 DEBUG (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial command: 'b'\xaa\x04N\x00\x08\xfc''.
2019-11-11 19:07:18 DEBUG (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial response: 'b'\x05M\x08\x00\x01\xfb\xaa''.
2019-11-11 19:07:18 WARNING (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' status is unknown: '251'.
2019-11-11 19:07:18 WARNING (SyncWorker_17) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:07:18 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial command: 'b'\xaa\x04N\x01\x00\x03''.
2019-11-11 19:07:19 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial response: 'b'\x05M\x00\x08\x02\xfa\xaa''.
2019-11-11 19:07:19 WARNING (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' status is unknown: '250'.
2019-11-11 19:07:19 ERROR (SyncWorker_8) [custom_components.elero] Elero - The response not just one channel: '{2, 12}'.
2019-11-11 19:07:19 DEBUG (SyncWorker_13) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial command: 'b'\xaa\x04N\x00\x01\x03''.
2019-11-11 19:07:19 DEBUG (SyncWorker_13) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial response: 'b'\x05M\x01\x00\x02\x01\xaa''.
2019-11-11 19:07:19 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial command: 'b'\xaa\x04N\x00\x80\x84''.
2019-11-11 19:07:19 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial response: 'b'\x05M\x00\x01\x01\x02\xaa''.
2019-11-11 19:07:19 ERROR (SyncWorker_2) [custom_components.elero] Elero - The response not just one channel: '{9, 1}'.
2019-11-11 19:07:32 DEBUG (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial command: 'b'\xaa\x04N\x00 \xe4''.
2019-11-11 19:07:32 DEBUG (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial response: 'b'\x05M\x00\x80\x02\x82\xaa''.
2019-11-11 19:07:32 WARNING (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' status is unknown: '130'.
2019-11-11 19:07:32 ERROR (SyncWorker_3) [custom_components.elero] Elero - The response not just one channel: '{16, 2}'.
2019-11-11 19:07:32 DEBUG (SyncWorker_16) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial command: 'b'\xaa\x04N\x00\x10\xf4''.
2019-11-11 19:07:32 DEBUG (SyncWorker_16) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial response: 'b'\x05M\x00 \x02\xe2\xaa''.
2019-11-11 19:07:32 WARNING (SyncWorker_16) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' status is unknown: '226'.
2019-11-11 19:07:32 ERROR (SyncWorker_16) [custom_components.elero] Elero - The response not just one channel: '{2, 14}'.
2019-11-11 19:07:32 DEBUG (SyncWorker_5) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial command: 'b'\xaa\x04N\x00\x01\x03''.
2019-11-11 19:07:32 DEBUG (SyncWorker_5) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial response: 'b'\x05M\x00\x10\x04\xf0\xaa''.
2019-11-11 19:07:32 WARNING (SyncWorker_5) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' status is unknown: '240'.
2019-11-11 19:07:32 ERROR (SyncWorker_5) [custom_components.elero] Elero - The response not just one channel: '{3, 13}'.
2019-11-11 19:07:32 DEBUG (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial command: 'b'\xaa\x04N\x01\x00\x03''.
2019-11-11 19:07:33 DEBUG (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial response: 'b'\x05M\x00\x01\x01\x02\xaa''.
2019-11-11 19:07:33 ERROR (SyncWorker_17) [custom_components.elero] Elero - The response not just one channel: '{9, 1}'.
2019-11-11 19:07:33 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial command: 'b'\xaa\x04N\x08\x00\xfc''.
2019-11-11 19:07:33 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial response: 'b'\x05M\x01\x00\x02\x01\xaa''.
2019-11-11 19:07:33 DEBUG (SyncWorker_13) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial command: 'b'\xaa\x04N\x10\x00\xf4''.
2019-11-11 19:07:33 DEBUG (SyncWorker_13) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial response: 'b'\x05M\x08\x00\x01\xfb\xaa''.
2019-11-11 19:07:33 WARNING (SyncWorker_13) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' status is unknown: '251'.
2019-11-11 19:07:33 WARNING (SyncWorker_13) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:07:33 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial command: 'b'\xaa\x04N\x00\x08\xfc''.
2019-11-11 19:07:33 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial response: 'b'\x05M\x10\x00\x01\xf3\xaa''.
2019-11-11 19:07:33 WARNING (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' status is unknown: '243'.
2019-11-11 19:07:33 WARNING (SyncWorker_2) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:07:33 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial command: 'b'\xaa\x04N\x00\x04\x00''.
2019-11-11 19:07:34 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial response: 'b'\x05M\x00\x08\x02\xfa\xaa''.
2019-11-11 19:07:34 WARNING (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' status is unknown: '250'.
2019-11-11 19:07:34 ERROR (SyncWorker_1) [custom_components.elero] Elero - The response not just one channel: '{2, 12}'.
2019-11-11 19:07:34 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial command: 'b'\xaa\x04N\x00@\xc4''.
2019-11-11 19:07:34 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial response: 'b'\x05M\x00\x04\x02\xfe\xaa''.
2019-11-11 19:07:34 WARNING (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' status is unknown: '254'.
2019-11-11 19:07:34 ERROR (SyncWorker_14) [custom_components.elero] Elero - The response not just one channel: '{2, 11}'.
2019-11-11 19:07:34 DEBUG (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial command: 'b'\xaa\x04N\x00\x80\x84''.
2019-11-11 19:07:34 DEBUG (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial response: 'b'\x05M\x00@\x02\xc2\xaa''.
2019-11-11 19:07:34 WARNING (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' status is unknown: '194'.
2019-11-11 19:07:34 ERROR (SyncWorker_7) [custom_components.elero] Elero - The response not just one channel: '{2, 15}'.
2019-11-11 19:07:34 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial command: 'b'\xaa\x04N\x02\x00\x02''.
2019-11-11 19:07:35 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial response: 'b'\x05M\x00\x80\x02\x82\xaa''.
2019-11-11 19:07:35 WARNING (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' status is unknown: '130'.
2019-11-11 19:07:35 ERROR (SyncWorker_9) [custom_components.elero] Elero - The response not just one channel: '{16, 2}'.
2019-11-11 19:07:35 DEBUG (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial command: 'b'\xaa\x04N\x04\x00\x00''.
2019-11-11 19:07:35 DEBUG (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial response: 'b'\x05M\x02\x00\x01\x01\xaa''.
2019-11-11 19:07:35 DEBUG (SyncWorker_18) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial command: 'b'\xaa\x04N\x00\x02\x02''.
2019-11-11 19:07:35 DEBUG (SyncWorker_18) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial response: 'b'\x05M\x04\x00\x01\xff\xaa''.
2019-11-11 19:07:35 WARNING (SyncWorker_18) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' status is unknown: '255'.
2019-11-11 19:07:35 WARNING (SyncWorker_18) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:07:48 DEBUG (SyncWorker_4) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial command: 'b'\xaa\x04N\x00\x80\x84''.
2019-11-11 19:07:48 DEBUG (SyncWorker_4) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial response: 'b'\x05M\x00\x02\x01\x01\xaa''.
2019-11-11 19:07:48 ERROR (SyncWorker_4) [custom_components.elero] Elero - The response not just one channel: '{1, 10}'.
2019-11-11 19:07:48 DEBUG (SyncWorker_16) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial command: 'b'\xaa\x04N\x00\x08\xfc''.
2019-11-11 19:07:48 DEBUG (SyncWorker_16) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial response: 'b'\x05M\x00\x80\x02\x82\xaa''.
2019-11-11 19:07:48 WARNING (SyncWorker_16) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' status is unknown: '130'.
2019-11-11 19:07:48 ERROR (SyncWorker_16) [custom_components.elero] Elero - The response not just one channel: '{16, 2}'.
2019-11-11 19:07:48 DEBUG (SyncWorker_5) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial command: 'b'\xaa\x04N\x00 \xe4''.
2019-11-11 19:07:48 DEBUG (SyncWorker_5) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial response: 'b'\x05M\x00\x08\x02\xfa\xaa''.
2019-11-11 19:07:48 WARNING (SyncWorker_5) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' status is unknown: '250'.
2019-11-11 19:07:48 ERROR (SyncWorker_5) [custom_components.elero] Elero - The response not just one channel: '{2, 12}'.
2019-11-11 19:07:48 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial command: 'b'\xaa\x04N\x00@\xc4''.
2019-11-11 19:07:48 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial response: 'b'\x05M\x00 \x02\xe2\xaa''.
2019-11-11 19:07:48 WARNING (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' status is unknown: '226'.
2019-11-11 19:07:48 ERROR (SyncWorker_0) [custom_components.elero] Elero - The response not just one channel: '{2, 14}'.
2019-11-11 19:07:48 DEBUG (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial command: 'b'\xaa\x04N\x04\x00\x00''.
2019-11-11 19:07:48 DEBUG (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial response: 'b'\x05M\x00@\x02\xc2\xaa''.
2019-11-11 19:07:48 WARNING (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' status is unknown: '194'.
2019-11-11 19:07:48 ERROR (SyncWorker_19) [custom_components.elero] Elero - The response not just one channel: '{2, 15}'.
2019-11-11 19:07:48 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial command: 'b'\xaa\x04N\x00\x01\x03''.
2019-11-11 19:07:48 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial response: 'b'\x05M\x04\x00\x01\xff\xaa''.
2019-11-11 19:07:48 WARNING (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' status is unknown: '255'.
2019-11-11 19:07:48 WARNING (SyncWorker_8) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:07:48 DEBUG (SyncWorker_13) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial command: 'b'\xaa\x04N\x08\x00\xfc''.
2019-11-11 19:07:48 DEBUG (SyncWorker_13) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial response: 'b'\x05M\x00\x01\x01\x02\xaa''.
2019-11-11 19:07:48 ERROR (SyncWorker_13) [custom_components.elero] Elero - The response not just one channel: '{9, 1}'.
2019-11-11 19:07:48 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial command: 'b'\xaa\x04N\x00\x10\xf4''.
2019-11-11 19:07:49 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial response: 'b'\x05M\x08\x00\x01\xfb\xaa''.
2019-11-11 19:07:49 WARNING (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' status is unknown: '251'.
2019-11-11 19:07:49 WARNING (SyncWorker_15) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:07:49 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial command: 'b'\xaa\x04N\x00\x02\x02''.
2019-11-11 19:07:49 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial response: 'b'\x05M\x00\x10\x04\xf0\xaa''.
2019-11-11 19:07:49 WARNING (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' status is unknown: '240'.
2019-11-11 19:07:49 ERROR (SyncWorker_2) [custom_components.elero] Elero - The response not just one channel: '{3, 13}'.
2019-11-11 19:07:49 DEBUG (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial command: 'b'\xaa\x04N\x10\x00\xf4''.
2019-11-11 19:07:49 DEBUG (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial response: 'b'\x05M\x00\x02\x01\x01\xaa''.
2019-11-11 19:07:49 ERROR (SyncWorker_7) [custom_components.elero] Elero - The response not just one channel: '{1, 10}'.
2019-11-11 19:07:49 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial command: 'b'\xaa\x04N\x01\x00\x03''.
2019-11-11 19:07:50 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial response: 'b'\x05M\x10\x00\x01\xf3\xaa''.
2019-11-11 19:07:50 WARNING (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' status is unknown: '243'.
2019-11-11 19:07:50 WARNING (SyncWorker_9) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:07:50 DEBUG (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial command: 'b'\xaa\x04N\x02\x00\x02''.
2019-11-11 19:07:51 DEBUG (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial response: 'b'\x05M\x01\x00\x02\x01\xaa''.
2019-11-11 19:07:51 DEBUG (SyncWorker_18) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial command: 'b'\xaa\x04N\x00\x04\x00''.
2019-11-11 19:07:51 DEBUG (SyncWorker_18) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial response: 'b'\x05M\x02\x00\x01\x01\xaa''.
2019-11-11 19:07:58 DEBUG (SyncWorker_13) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial command: 'b'\xaa\x05L\x00\x80 e''.
2019-11-11 19:07:59 DEBUG (SyncWorker_13) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial response: 'b'\x05M\x00\x04\x02\xfe\xaa''.
2019-11-11 19:07:59 WARNING (SyncWorker_13) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' status is unknown: '254'.
2019-11-11 19:07:59 ERROR (SyncWorker_13) [custom_components.elero] Elero - The response not just one channel: '{2, 11}'.
2019-11-11 19:07:59 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial command: 'b'\xaa\x04N\x00\x80\x84''.
2019-11-11 19:07:59 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial response: 'b'\x05M\x00\x80\nz\xaa''.
2019-11-11 19:07:59 WARNING (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' status is unknown: '122'.
2019-11-11 19:07:59 ERROR (SyncWorker_15) [custom_components.elero] Elero - The response not just one channel: '{16, 2, 4}'.
2019-11-11 19:08:04 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial command: 'b'\xaa\x04N\x01\x00\x03''.
2019-11-11 19:08:04 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial response: 'b'\x05M\x00\x80\nz\xaa''.
2019-11-11 19:08:04 WARNING (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' status is unknown: '122'.
2019-11-11 19:08:04 ERROR (SyncWorker_2) [custom_components.elero] Elero - The response not just one channel: '{16, 2, 4}'.
2019-11-11 19:08:04 DEBUG (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial command: 'b'\xaa\x04N\x00\x08\xfc''.
2019-11-11 19:08:04 DEBUG (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial response: 'b'\x05M\x01\x00\x02\x01\xaa''.
2019-11-11 19:08:04 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial command: 'b'\xaa\x04N\x04\x00\x00''.
2019-11-11 19:08:05 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial response: 'b'\x05M\x00\x08\x02\xfa\xaa''.
2019-11-11 19:08:05 WARNING (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' status is unknown: '250'.
2019-11-11 19:08:05 ERROR (SyncWorker_9) [custom_components.elero] Elero - The response not just one channel: '{2, 12}'.
2019-11-11 19:08:05 DEBUG (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial command: 'b'\xaa\x04N\x00\x80\x84''.
2019-11-11 19:08:05 DEBUG (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial response: 'b'\x05M\x04\x00\x01\xff\xaa''.
2019-11-11 19:08:05 WARNING (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' status is unknown: '255'.
2019-11-11 19:08:05 WARNING (SyncWorker_3) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:08:05 DEBUG (SyncWorker_18) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial command: 'b'\xaa\x04N\x00\x02\x02''.
2019-11-11 19:08:05 DEBUG (SyncWorker_18) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial response: 'b'\x05M\x00\x80\nz\xaa''.
2019-11-11 19:08:05 WARNING (SyncWorker_18) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' status is unknown: '122'.
2019-11-11 19:08:05 ERROR (SyncWorker_18) [custom_components.elero] Elero - The response not just one channel: '{16, 2, 4}'.
2019-11-11 19:08:05 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial command: 'b'\xaa\x04N\x00@\xc4''.
2019-11-11 19:08:05 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial response: 'b'\x05M\x00\x02\x01\x01\xaa''.
2019-11-11 19:08:05 ERROR (SyncWorker_0) [custom_components.elero] Elero - The response not just one channel: '{1, 10}'.
2019-11-11 19:08:05 DEBUG (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial command: 'b'\xaa\x04N\x08\x00\xfc''.
2019-11-11 19:08:06 DEBUG (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial response: 'b'\x05M\x00@\x02\xc2\xaa''.
2019-11-11 19:08:06 WARNING (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' status is unknown: '194'.
2019-11-11 19:08:06 ERROR (SyncWorker_17) [custom_components.elero] Elero - The response not just one channel: '{2, 15}'.
2019-11-11 19:08:06 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial command: 'b'\xaa\x04N\x00 \xe4''.
2019-11-11 19:08:06 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial response: 'b'\x05M\x08\x00\x01\xfb\xaa''.
2019-11-11 19:08:06 WARNING (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' status is unknown: '251'.
2019-11-11 19:08:06 WARNING (SyncWorker_8) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:08:06 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial command: 'b'\xaa\x04N\x00\x10\xf4''.
2019-11-11 19:08:06 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial response: 'b'\x05M\x00 \x02\xe2\xaa''.
2019-11-11 19:08:06 WARNING (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' status is unknown: '226'.
2019-11-11 19:08:06 ERROR (SyncWorker_14) [custom_components.elero] Elero - The response not just one channel: '{2, 14}'.
2019-11-11 19:08:06 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial command: 'b'\xaa\x04N\x02\x00\x02''.
2019-11-11 19:08:07 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial response: 'b'\x05M\x00\x10\x04\xf0\xaa''.
2019-11-11 19:08:07 WARNING (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' status is unknown: '240'.
2019-11-11 19:08:07 ERROR (SyncWorker_12) [custom_components.elero] Elero - The response not just one channel: '{3, 13}'.
2019-11-11 19:08:07 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial command: 'b'\xaa\x04N\x10\x00\xf4''.
2019-11-11 19:08:07 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial response: 'b'\x05M\x02\x00\x01\x01\xaa''.
2019-11-11 19:08:07 DEBUG (SyncWorker_4) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial command: 'b'\xaa\x04N\x00\x01\x03''.
2019-11-11 19:08:07 DEBUG (SyncWorker_4) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial response: 'b'\x05M\x10\x00\x01\xf3\xaa''.
2019-11-11 19:08:07 WARNING (SyncWorker_4) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' status is unknown: '243'.
2019-11-11 19:08:07 WARNING (SyncWorker_4) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:08:07 DEBUG (SyncWorker_16) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial command: 'b'\xaa\x04N\x00\x04\x00''.
2019-11-11 19:08:07 DEBUG (SyncWorker_16) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial response: 'b'\x05M\x00\x01\x01\x02\xaa''.
2019-11-11 19:08:07 ERROR (SyncWorker_16) [custom_components.elero] Elero - The response not just one channel: '{9, 1}'.
2019-11-11 19:08:20 DEBUG (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial command: 'b'\xaa\x04N\x00\x80\x84''.
2019-11-11 19:08:20 DEBUG (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial response: 'b'\x05M\x00\x04\x02\xfe\xaa''.
2019-11-11 19:08:20 WARNING (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' status is unknown: '254'.
2019-11-11 19:08:20 ERROR (SyncWorker_17) [custom_components.elero] Elero - The response not just one channel: '{2, 11}'.
2019-11-11 19:08:20 DEBUG (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial command: 'b'\xaa\x04N\x00@\xc4''.
2019-11-11 19:08:20 DEBUG (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial response: 'b'\x05M\x00\x80\nz\xaa''.
2019-11-11 19:08:20 WARNING (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' status is unknown: '122'.
2019-11-11 19:08:20 ERROR (SyncWorker_17) [custom_components.elero] Elero - The response not just one channel: '{16, 2, 4}'.
2019-11-11 19:08:20 DEBUG (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial command: 'b'\xaa\x04N\x08\x00\xfc''.
2019-11-11 19:08:20 DEBUG (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial response: 'b'\x05M\x00@\x02\xc2\xaa''.
2019-11-11 19:08:20 WARNING (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' status is unknown: '194'.
2019-11-11 19:08:20 ERROR (SyncWorker_7) [custom_components.elero] Elero - The response not just one channel: '{2, 15}'.
2019-11-11 19:08:20 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial command: 'b'\xaa\x04N\x00 \xe4''.
2019-11-11 19:08:20 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial response: 'b'\x05M\x08\x00\x01\xfb\xaa''.
2019-11-11 19:08:20 WARNING (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' status is unknown: '251'.
2019-11-11 19:08:20 WARNING (SyncWorker_9) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:08:20 DEBUG (SyncWorker_10) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial command: 'b'\xaa\x04N\x00\x01\x03''.
2019-11-11 19:08:20 DEBUG (SyncWorker_10) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial response: 'b'\x05M\x00 \x02\xe2\xaa''.
2019-11-11 19:08:20 WARNING (SyncWorker_10) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' status is unknown: '226'.
2019-11-11 19:08:20 ERROR (SyncWorker_10) [custom_components.elero] Elero - The response not just one channel: '{2, 14}'.
2019-11-11 19:08:20 DEBUG (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial command: 'b'\xaa\x04N\x01\x00\x03''.
2019-11-11 19:08:21 DEBUG (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial response: 'b'\x05M\x00\x01\x01\x02\xaa''.
2019-11-11 19:08:21 ERROR (SyncWorker_19) [custom_components.elero] Elero - The response not just one channel: '{9, 1}'.
2019-11-11 19:08:21 DEBUG (SyncWorker_6) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial command: 'b'\xaa\x04N\x04\x00\x00''.
2019-11-11 19:08:21 DEBUG (SyncWorker_6) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial response: 'b'\x05M\x01\x00\x02\x01\xaa''.
2019-11-11 19:08:21 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial command: 'b'\xaa\x04N\x00\x04\x00''.
2019-11-11 19:08:21 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial response: 'b'\x05M\x04\x00\x01\xff\xaa''.
2019-11-11 19:08:21 WARNING (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' status is unknown: '255'.
2019-11-11 19:08:21 WARNING (SyncWorker_0) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:08:21 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial command: 'b'\xaa\x04N\x00\x02\x02''.
2019-11-11 19:08:22 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial response: 'b'\x05M\x00\x04\x02\xfe\xaa''.
2019-11-11 19:08:22 WARNING (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' status is unknown: '254'.
2019-11-11 19:08:22 ERROR (SyncWorker_8) [custom_components.elero] Elero - The response not just one channel: '{2, 11}'.
2019-11-11 19:08:22 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial command: 'b'\xaa\x04N\x02\x00\x02''.
2019-11-11 19:08:22 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial response: 'b'\x05M\x00\x02\x01\x01\xaa''.
2019-11-11 19:08:22 ERROR (SyncWorker_12) [custom_components.elero] Elero - The response not just one channel: '{1, 10}'.
2019-11-11 19:08:22 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial command: 'b'\xaa\x04N\x10\x00\xf4''.
2019-11-11 19:08:23 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial response: 'b'\x05M\x02\x00\x01\x01\xaa''.
2019-11-11 19:08:23 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial command: 'b'\xaa\x04N\x00\x10\xf4''.
2019-11-11 19:08:23 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial response: 'b'\x05M\x10\x00\x01\xf3\xaa''.
2019-11-11 19:08:23 WARNING (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' status is unknown: '243'.
2019-11-11 19:08:23 WARNING (SyncWorker_2) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:08:23 DEBUG (SyncWorker_4) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial command: 'b'\xaa\x04N\x00\x08\xfc''.
2019-11-11 19:08:23 DEBUG (SyncWorker_4) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial response: 'b'\x05M\x00\x10\x04\xf0\xaa''.
2019-11-11 19:08:23 WARNING (SyncWorker_4) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' status is unknown: '240'.
2019-11-11 19:08:23 ERROR (SyncWorker_4) [custom_components.elero] Elero - The response not just one channel: '{3, 13}'.
2019-11-11 19:08:36 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial command: 'b'\xaa\x04N\x00\x80\x84''.
2019-11-11 19:08:36 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial response: 'b'\x05M\x00\x08\x02\xfa\xaa''.
2019-11-11 19:08:36 WARNING (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' status is unknown: '250'.
2019-11-11 19:08:36 ERROR (SyncWorker_0) [custom_components.elero] Elero - The response not just one channel: '{2, 12}'.
2019-11-11 19:08:36 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial command: 'b'\xaa\x04N\x01\x00\x03''.
2019-11-11 19:08:37 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial response: 'b'\x05M\x00\x80\x01\x83\xaa''.
2019-11-11 19:08:37 WARNING (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' status is unknown: '131'.
2019-11-11 19:08:37 ERROR (SyncWorker_8) [custom_components.elero] Elero - The response not just one channel: '{16, 1}'.
2019-11-11 19:08:37 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial command: 'b'\xaa\x04N\x00@\xc4''.
2019-11-11 19:08:37 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial response: 'b'\x05M\x01\x00\x02\x01\xaa''.
2019-11-11 19:08:37 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial command: 'b'\xaa\x04N\x00 \xe4''.
2019-11-11 19:08:37 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial response: 'b'\x05M\x00@\x02\xc2\xaa''.
2019-11-11 19:08:37 WARNING (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' status is unknown: '194'.
2019-11-11 19:08:37 ERROR (SyncWorker_14) [custom_components.elero] Elero - The response not just one channel: '{2, 15}'.
2019-11-11 19:08:37 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial command: 'b'\xaa\x04N\x10\x00\xf4''.
2019-11-11 19:08:37 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial response: 'b'\x05M\x00 \x02\xe2\xaa''.
2019-11-11 19:08:37 WARNING (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' status is unknown: '226'.
2019-11-11 19:08:37 ERROR (SyncWorker_2) [custom_components.elero] Elero - The response not just one channel: '{2, 14}'.
2019-11-11 19:08:37 DEBUG (SyncWorker_4) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial command: 'b'\xaa\x04N\x00\x01\x03''.
2019-11-11 19:08:37 DEBUG (SyncWorker_4) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial response: 'b'\x05M\x10\x00\x01\xf3\xaa''.
2019-11-11 19:08:37 WARNING (SyncWorker_4) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' status is unknown: '243'.
2019-11-11 19:08:37 WARNING (SyncWorker_4) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:08:37 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial command: 'b'\xaa\x04N\x02\x00\x02''.
2019-11-11 19:08:38 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial response: 'b'\x05M\x00\x01\x01\x02\xaa''.
2019-11-11 19:08:38 ERROR (SyncWorker_9) [custom_components.elero] Elero - The response not just one channel: '{9, 1}'.
2019-11-11 19:08:38 DEBUG (SyncWorker_16) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial command: 'b'\xaa\x04N\x04\x00\x00''.
2019-11-11 19:08:38 DEBUG (SyncWorker_16) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial response: 'b'\x05M\x02\x00\x01\x01\xaa''.
2019-11-11 19:08:39 DEBUG (SyncWorker_5) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial command: 'b'\xaa\x04N\x00\x04\x00''.
2019-11-11 19:08:39 DEBUG (SyncWorker_5) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial response: 'b'\x05M\x04\x00\x01\xff\xaa''.
2019-11-11 19:08:39 WARNING (SyncWorker_5) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' status is unknown: '255'.
2019-11-11 19:08:39 WARNING (SyncWorker_5) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:08:39 DEBUG (SyncWorker_13) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial command: 'b'\xaa\x04N\x00\x08\xfc''.
2019-11-11 19:08:39 DEBUG (SyncWorker_13) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial response: 'b'\x05M\x00\x04\x02\xfe\xaa''.
2019-11-11 19:08:39 WARNING (SyncWorker_13) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' status is unknown: '254'.
2019-11-11 19:08:39 ERROR (SyncWorker_13) [custom_components.elero] Elero - The response not just one channel: '{2, 11}'.
2019-11-11 19:08:39 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial command: 'b'\xaa\x04N\x00\x10\xf4''.
2019-11-11 19:08:39 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial response: 'b'\x05M\x00\x08\x02\xfa\xaa''.
2019-11-11 19:08:39 WARNING (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' status is unknown: '250'.
2019-11-11 19:08:39 ERROR (SyncWorker_0) [custom_components.elero] Elero - The response not just one channel: '{2, 12}'.
2019-11-11 19:08:39 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial command: 'b'\xaa\x04N\x08\x00\xfc''.
2019-11-11 19:08:39 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial response: 'b'\x05M\x00\x10\x04\xf0\xaa''.
2019-11-11 19:08:39 WARNING (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' status is unknown: '240'.
2019-11-11 19:08:39 ERROR (SyncWorker_8) [custom_components.elero] Elero - The response not just one channel: '{3, 13}'.
2019-11-11 19:08:39 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial command: 'b'\xaa\x04N\x00\x02\x02''.
2019-11-11 19:08:39 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial response: 'b'\x05M\x08\x00\x01\xfb\xaa''.
2019-11-11 19:08:39 WARNING (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' status is unknown: '251'.
2019-11-11 19:08:39 WARNING (SyncWorker_12) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:08:52 DEBUG (SyncWorker_18) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial command: 'b'\xaa\x04N\x01\x00\x03''.
2019-11-11 19:08:53 DEBUG (SyncWorker_18) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial response: 'b'\x05M\x00\x02\x01\x01\xaa''.
2019-11-11 19:08:53 ERROR (SyncWorker_18) [custom_components.elero] Elero - The response not just one channel: '{1, 10}'.
2019-11-11 19:08:53 DEBUG (SyncWorker_13) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial command: 'b'\xaa\x04N\x00@\xc4''.
2019-11-11 19:08:53 DEBUG (SyncWorker_13) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial response: 'b'\x05M\x01\x00\x02\x01\xaa''.
2019-11-11 19:08:53 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial command: 'b'\xaa\x04N\x00\x01\x03''.
2019-11-11 19:08:53 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial response: 'b'\x05M\x00@\x02\xc2\xaa''.
2019-11-11 19:08:53 WARNING (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' status is unknown: '194'.
2019-11-11 19:08:53 ERROR (SyncWorker_12) [custom_components.elero] Elero - The response not just one channel: '{2, 15}'.
2019-11-11 19:08:53 DEBUG (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial command: 'b'\xaa\x04N\x00\x08\xfc''.
2019-11-11 19:08:53 DEBUG (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial response: 'b'\x05M\x00\x01\x01\x02\xaa''.
2019-11-11 19:08:53 ERROR (SyncWorker_7) [custom_components.elero] Elero - The response not just one channel: '{9, 1}'.
2019-11-11 19:08:53 DEBUG (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial command: 'b'\xaa\x04N\x00\x10\xf4''.
2019-11-11 19:08:53 DEBUG (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial response: 'b'\x05M\x00\x08\x02\xfa\xaa''.
2019-11-11 19:08:53 WARNING (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' status is unknown: '250'.
2019-11-11 19:08:53 ERROR (SyncWorker_3) [custom_components.elero] Elero - The response not just one channel: '{2, 12}'.
2019-11-11 19:08:53 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial command: 'b'\xaa\x04N\x00\x80\x84''.
2019-11-11 19:08:53 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial response: 'b'\x05M\x00\x10\x04\xf0\xaa''.
2019-11-11 19:08:53 WARNING (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' status is unknown: '240'.
2019-11-11 19:08:53 ERROR (SyncWorker_14) [custom_components.elero] Elero - The response not just one channel: '{3, 13}'.
2019-11-11 19:08:53 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial command: 'b'\xaa\x04N\x08\x00\xfc''.
2019-11-11 19:08:54 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial response: 'b'\x05M\x00\x80\x01\x83\xaa''.
2019-11-11 19:08:54 WARNING (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' status is unknown: '131'.
2019-11-11 19:08:54 ERROR (SyncWorker_14) [custom_components.elero] Elero - The response not just one channel: '{16, 1}'.
2019-11-11 19:08:54 DEBUG (SyncWorker_16) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial command: 'b'\xaa\x04N\x00\x04\x00''.
2019-11-11 19:08:54 DEBUG (SyncWorker_16) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial response: 'b'\x05M\x08\x00\x01\xfb\xaa''.
2019-11-11 19:08:54 WARNING (SyncWorker_16) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' status is unknown: '251'.
2019-11-11 19:08:54 WARNING (SyncWorker_16) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:08:54 DEBUG (SyncWorker_18) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial command: 'b'\xaa\x04N\x04\x00\x00''.
2019-11-11 19:08:54 DEBUG (SyncWorker_18) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial response: 'b'\x05M\x00\x04\x02\xfe\xaa''.
2019-11-11 19:08:54 WARNING (SyncWorker_18) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' status is unknown: '254'.
2019-11-11 19:08:54 ERROR (SyncWorker_18) [custom_components.elero] Elero - The response not just one channel: '{2, 11}'.
2019-11-11 19:08:54 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial command: 'b'\xaa\x04N\x10\x00\xf4''.
2019-11-11 19:08:55 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial response: 'b'\x05M\x04\x00\x01\xff\xaa''.
2019-11-11 19:08:55 WARNING (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' status is unknown: '255'.
2019-11-11 19:08:55 WARNING (SyncWorker_0) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:08:55 DEBUG (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial command: 'b'\xaa\x04N\x02\x00\x02''.
2019-11-11 19:08:55 DEBUG (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial response: 'b'\x05M\x10\x00\x01\xf3\xaa''.
2019-11-11 19:08:55 WARNING (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' status is unknown: '243'.
2019-11-11 19:08:55 WARNING (SyncWorker_19) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:08:55 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial command: 'b'\xaa\x04N\x00 \xe4''.
2019-11-11 19:08:55 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial response: 'b'\x05M\x02\x00\x01\x01\xaa''.
2019-11-11 19:08:55 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial command: 'b'\xaa\x04N\x00\x02\x02''.
2019-11-11 19:08:56 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial response: 'b'\x05M\x00 \x02\xe2\xaa''.
2019-11-11 19:08:56 WARNING (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' status is unknown: '226'.
2019-11-11 19:08:56 ERROR (SyncWorker_2) [custom_components.elero] Elero - The response not just one channel: '{2, 14}'.
2019-11-11 19:09:08 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial command: 'b'\xaa\x04N\x00 \xe4''.
2019-11-11 19:09:08 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial response: 'b'\x05M\x00\x02\x01\x01\xaa''.
2019-11-11 19:09:08 ERROR (SyncWorker_14) [custom_components.elero] Elero - The response not just one channel: '{1, 10}'.
2019-11-11 19:09:08 DEBUG (SyncWorker_16) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial command: 'b'\xaa\x04N\x00\x01\x03''.
2019-11-11 19:09:08 DEBUG (SyncWorker_16) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial response: 'b'\x05M\x00 \x02\xe2\xaa''.
2019-11-11 19:09:08 WARNING (SyncWorker_16) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' status is unknown: '226'.
2019-11-11 19:09:08 ERROR (SyncWorker_16) [custom_components.elero] Elero - The response not just one channel: '{2, 14}'.
2019-11-11 19:09:08 DEBUG (SyncWorker_18) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial command: 'b'\xaa\x04N\x00\x02\x02''.
2019-11-11 19:09:08 DEBUG (SyncWorker_18) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial response: 'b'\x05M\x00\x01\x01\x02\xaa''.
2019-11-11 19:09:08 ERROR (SyncWorker_18) [custom_components.elero] Elero - The response not just one channel: '{9, 1}'.
2019-11-11 19:09:08 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial command: 'b'\xaa\x04N\x00\x10\xf4''.
2019-11-11 19:09:08 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial response: 'b'\x05M\x00\x02\x01\x01\xaa''.
2019-11-11 19:09:08 ERROR (SyncWorker_0) [custom_components.elero] Elero - The response not just one channel: '{1, 10}'.
2019-11-11 19:09:08 DEBUG (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial command: 'b'\xaa\x04N\x00\x80\x84''.
2019-11-11 19:09:08 DEBUG (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial response: 'b'\x05M\x00\x10\x04\xf0\xaa''.
2019-11-11 19:09:08 WARNING (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' status is unknown: '240'.
2019-11-11 19:09:08 ERROR (SyncWorker_19) [custom_components.elero] Elero - The response not just one channel: '{3, 13}'.
2019-11-11 19:09:08 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial command: 'b'\xaa\x04N\x00\x04\x00''.
2019-11-11 19:09:08 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial response: 'b'\x05M\x00\x80\x01\x83\xaa''.
2019-11-11 19:09:08 WARNING (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' status is unknown: '131'.
2019-11-11 19:09:08 ERROR (SyncWorker_1) [custom_components.elero] Elero - The response not just one channel: '{16, 1}'.
2019-11-11 19:09:08 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial command: 'b'\xaa\x04N\x08\x00\xfc''.
2019-11-11 19:09:09 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial response: 'b'\x05M\x00\x04\x02\xfe\xaa''.
2019-11-11 19:09:09 WARNING (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' status is unknown: '254'.
2019-11-11 19:09:09 ERROR (SyncWorker_2) [custom_components.elero] Elero - The response not just one channel: '{2, 11}'.
2019-11-11 19:09:09 DEBUG (SyncWorker_4) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial command: 'b'\xaa\x04N\x04\x00\x00''.
2019-11-11 19:09:09 DEBUG (SyncWorker_4) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial response: 'b'\x05M\x08\x00\x01\xfb\xaa''.
2019-11-11 19:09:09 WARNING (SyncWorker_4) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' status is unknown: '251'.
2019-11-11 19:09:09 WARNING (SyncWorker_4) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:09:09 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial command: 'b'\xaa\x04N\x02\x00\x02''.
2019-11-11 19:09:11 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial response: 'b'\x05M\x04\x00\x01\xff\xaa''.
2019-11-11 19:09:11 WARNING (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' status is unknown: '255'.
2019-11-11 19:09:11 WARNING (SyncWorker_9) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:09:11 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial command: 'b'\xaa\x04N\x10\x00\xf4''.
2019-11-11 19:09:11 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial response: 'b'\x05M\x02\x00\x01\x01\xaa''.
2019-11-11 19:09:11 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial command: 'b'\xaa\x04N\x00@\xc4''.
2019-11-11 19:09:11 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial response: 'b'\x05M\x10\x00\x01\xf3\xaa''.
2019-11-11 19:09:11 WARNING (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' status is unknown: '243'.
2019-11-11 19:09:11 WARNING (SyncWorker_15) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:09:11 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial command: 'b'\xaa\x04N\x00\x08\xfc''.
2019-11-11 19:09:11 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial response: 'b'\x05M\x00@\x02\xc2\xaa''.
2019-11-11 19:09:11 WARNING (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' status is unknown: '194'.
2019-11-11 19:09:11 ERROR (SyncWorker_11) [custom_components.elero] Elero - The response not just one channel: '{2, 15}'.
2019-11-11 19:09:11 DEBUG (SyncWorker_5) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial command: 'b'\xaa\x04N\x01\x00\x03''.
2019-11-11 19:09:13 DEBUG (SyncWorker_5) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial response: 'b'\x05M\x00\x08\x02\xfa\xaa''.
2019-11-11 19:09:13 WARNING (SyncWorker_5) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' status is unknown: '250'.
2019-11-11 19:09:13 ERROR (SyncWorker_5) [custom_components.elero] Elero - The response not just one channel: '{2, 12}'.
2019-11-11 19:09:24 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial command: 'b'\xaa\x04N\x00\x02\x02''.
2019-11-11 19:09:24 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial response: 'b'\x05M\x01\x00\x02\x01\xaa''.
2019-11-11 19:09:24 DEBUG (SyncWorker_4) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial command: 'b'\xaa\x04N\x00\x01\x03''.
2019-11-11 19:09:24 DEBUG (SyncWorker_4) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial response: 'b'\x05M\x00\x02\x01\x01\xaa''.
2019-11-11 19:09:24 ERROR (SyncWorker_4) [custom_components.elero] Elero - The response not just one channel: '{1, 10}'.
2019-11-11 19:09:24 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial command: 'b'\xaa\x04N\x00\x80\x84''.
2019-11-11 19:09:24 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial response: 'b'\x05M\x00\x01\x01\x02\xaa''.
2019-11-11 19:09:24 ERROR (SyncWorker_9) [custom_components.elero] Elero - The response not just one channel: '{9, 1}'.
2019-11-11 19:09:24 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial command: 'b'\xaa\x04N\x00\x04\x00''.
2019-11-11 19:09:24 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial response: 'b'\x05M\x00\x80\x01\x83\xaa''.
2019-11-11 19:09:24 WARNING (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' status is unknown: '131'.
2019-11-11 19:09:24 ERROR (SyncWorker_12) [custom_components.elero] Elero - The response not just one channel: '{16, 1}'.
2019-11-11 19:09:24 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial command: 'b'\xaa\x04N\x02\x00\x02''.
2019-11-11 19:09:25 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial response: 'b'\x05M\x00\x04\x02\xfe\xaa''.
2019-11-11 19:09:25 WARNING (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' status is unknown: '254'.
2019-11-11 19:09:25 ERROR (SyncWorker_15) [custom_components.elero] Elero - The response not just one channel: '{2, 11}'.
2019-11-11 19:09:25 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial command: 'b'\xaa\x04N\x00 \xe4''.
2019-11-11 19:09:25 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial response: 'b'\x05M\x02\x00\x01\x01\xaa''.
2019-11-11 19:09:25 DEBUG (SyncWorker_5) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial command: 'b'\xaa\x04N\x00@\xc4''.
2019-11-11 19:09:25 DEBUG (SyncWorker_5) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial response: 'b'\x05M\x00 \x02\xe2\xaa''.
2019-11-11 19:09:25 WARNING (SyncWorker_5) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' status is unknown: '226'.
2019-11-11 19:09:25 ERROR (SyncWorker_5) [custom_components.elero] Elero - The response not just one channel: '{2, 14}'.
2019-11-11 19:09:25 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial command: 'b'\xaa\x04N\x08\x00\xfc''.
2019-11-11 19:09:25 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial response: 'b'\x05M\x00@\x02\xc2\xaa''.
2019-11-11 19:09:25 WARNING (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' status is unknown: '194'.
2019-11-11 19:09:25 ERROR (SyncWorker_0) [custom_components.elero] Elero - The response not just one channel: '{2, 15}'.
2019-11-11 19:09:25 DEBUG (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial command: 'b'\xaa\x04N\x01\x00\x03''.
2019-11-11 19:09:26 DEBUG (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial response: 'b'\x05M\x08\x00\x01\xfb\xaa''.
2019-11-11 19:09:26 WARNING (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' status is unknown: '251'.
2019-11-11 19:09:26 WARNING (SyncWorker_7) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:09:26 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial command: 'b'\xaa\x04N\x04\x00\x00''.
2019-11-11 19:09:27 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial response: 'b'\x05M\x01\x00\x02\x01\xaa''.
2019-11-11 19:09:27 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial command: 'b'\xaa\x04N\x00\x08\xfc''.
2019-11-11 19:09:27 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial response: 'b'\x05M\x04\x00\x01\xff\xaa''.
2019-11-11 19:09:27 WARNING (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' status is unknown: '255'.
2019-11-11 19:09:27 WARNING (SyncWorker_12) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:09:27 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial command: 'b'\xaa\x04N\x00\x10\xf4''.
2019-11-11 19:09:27 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial response: 'b'\x05M\x00\x08\x02\xfa\xaa''.
2019-11-11 19:09:27 WARNING (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' status is unknown: '250'.
2019-11-11 19:09:27 ERROR (SyncWorker_15) [custom_components.elero] Elero - The response not just one channel: '{2, 12}'.
2019-11-11 19:09:27 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial command: 'b'\xaa\x04N\x10\x00\xf4''.
2019-11-11 19:09:27 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial response: 'b'\x05M\x00\x10\x04\xf0\xaa''.
2019-11-11 19:09:27 WARNING (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' status is unknown: '240'.
2019-11-11 19:09:27 ERROR (SyncWorker_11) [custom_components.elero] Elero - The response not just one channel: '{3, 13}'.
2019-11-11 19:09:40 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial command: 'b'\xaa\x04N\x00 \xe4''.
2019-11-11 19:09:40 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial response: 'b'\x05M\x10\x00\x01\xf3\xaa''.
2019-11-11 19:09:40 WARNING (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' status is unknown: '243'.
2019-11-11 19:09:40 WARNING (SyncWorker_2) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:09:40 DEBUG (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial command: 'b'\xaa\x04N\x00\x10\xf4''.
2019-11-11 19:09:40 DEBUG (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial response: 'b'\x05M\x00 \x02\xe2\xaa''.
2019-11-11 19:09:40 WARNING (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' status is unknown: '226'.
2019-11-11 19:09:40 ERROR (SyncWorker_17) [custom_components.elero] Elero - The response not just one channel: '{2, 14}'.
2019-11-11 19:09:40 DEBUG (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial command: 'b'\xaa\x04N\x04\x00\x00''.
2019-11-11 19:09:40 DEBUG (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial response: 'b'\x05M\x00\x10\x04\xf0\xaa''.
2019-11-11 19:09:40 WARNING (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' status is unknown: '240'.
2019-11-11 19:09:40 ERROR (SyncWorker_7) [custom_components.elero] Elero - The response not just one channel: '{3, 13}'.
2019-11-11 19:09:40 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial command: 'b'\xaa\x04N\x00\x02\x02''.
2019-11-11 19:09:40 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial response: 'b'\x05M\x04\x00\x01\xff\xaa''.
2019-11-11 19:09:40 WARNING (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' status is unknown: '255'.
2019-11-11 19:09:40 WARNING (SyncWorker_9) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:09:40 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial command: 'b'\xaa\x04N\x08\x00\xfc''.
2019-11-11 19:09:41 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial response: 'b'\x05M\x00\x02\x01\x01\xaa''.
2019-11-11 19:09:41 ERROR (SyncWorker_12) [custom_components.elero] Elero - The response not just one channel: '{1, 10}'.
2019-11-11 19:09:41 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial command: 'b'\xaa\x04N\x02\x00\x02''.
2019-11-11 19:09:42 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial response: 'b'\x05M\x08\x00\x01\xfb\xaa''.
2019-11-11 19:09:42 WARNING (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' status is unknown: '251'.
2019-11-11 19:09:42 WARNING (SyncWorker_15) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:09:42 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial command: 'b'\xaa\x04N\x00\x04\x00''.
2019-11-11 19:09:42 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial response: 'b'\x05M\x02\x00\x01\x01\xaa''.
2019-11-11 19:09:42 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial command: 'b'\xaa\x04N\x01\x00\x03''.
2019-11-11 19:09:43 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial response: 'b'\x05M\x00\x04\x02\xfe\xaa''.
2019-11-11 19:09:43 WARNING (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' status is unknown: '254'.
2019-11-11 19:09:43 ERROR (SyncWorker_8) [custom_components.elero] Elero - The response not just one channel: '{2, 11}'.
2019-11-11 19:09:43 DEBUG (SyncWorker_6) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial command: 'b'\xaa\x04N\x00\x01\x03''.
2019-11-11 19:09:43 DEBUG (SyncWorker_6) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial response: 'b'\x05M\x01\x00\x02\x01\xaa''.
2019-11-11 19:09:43 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial command: 'b'\xaa\x04N\x00@\xc4''.
2019-11-11 19:09:43 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial response: 'b'\x05M\x00\x01\x01\x02\xaa''.
2019-11-11 19:09:43 ERROR (SyncWorker_1) [custom_components.elero] Elero - The response not just one channel: '{9, 1}'.
2019-11-11 19:09:43 DEBUG (SyncWorker_10) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial command: 'b'\xaa\x04N\x00\x08\xfc''.
2019-11-11 19:09:43 DEBUG (SyncWorker_10) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial response: 'b'\x05M\x00@\x02\xc2\xaa''.
2019-11-11 19:09:43 WARNING (SyncWorker_10) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' status is unknown: '194'.
2019-11-11 19:09:43 ERROR (SyncWorker_10) [custom_components.elero] Elero - The response not just one channel: '{2, 15}'.
2019-11-11 19:09:43 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial command: 'b'\xaa\x04N\x10\x00\xf4''.
2019-11-11 19:09:43 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial response: 'b'\x05M\x00\x08\x02\xfa\xaa''.
2019-11-11 19:09:43 WARNING (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' status is unknown: '250'.
2019-11-11 19:09:43 ERROR (SyncWorker_2) [custom_components.elero] Elero - The response not just one channel: '{2, 12}'.
2019-11-11 19:09:43 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial command: 'b'\xaa\x04N\x00\x80\x84''.
2019-11-11 19:09:44 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial response: 'b'\x05M\x10\x00\x01\xf3\xaa''.
2019-11-11 19:09:44 WARNING (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' status is unknown: '243'.
2019-11-11 19:09:44 WARNING (SyncWorker_14) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:09:56 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial command: 'b'\xaa\x04N\x00\x80\x84''.
2019-11-11 19:09:56 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial response: 'b'\x05M\x00\x80\x01\x83\xaa''.
2019-11-11 19:09:56 WARNING (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' status is unknown: '131'.
2019-11-11 19:09:56 ERROR (SyncWorker_11) [custom_components.elero] Elero - The response not just one channel: '{16, 1}'.
2019-11-11 19:09:56 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial command: 'b'\xaa\x04N\x04\x00\x00''.
2019-11-11 19:09:56 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial response: 'b'\x05M\x00\x80\x01\x83\xaa''.
2019-11-11 19:09:56 WARNING (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' status is unknown: '131'.
2019-11-11 19:09:56 ERROR (SyncWorker_8) [custom_components.elero] Elero - The response not just one channel: '{16, 1}'.
2019-11-11 19:09:56 DEBUG (SyncWorker_6) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial command: 'b'\xaa\x04N\x00\x10\xf4''.
2019-11-11 19:09:56 DEBUG (SyncWorker_6) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial response: 'b'\x05M\x04\x00\x01\xff\xaa''.
2019-11-11 19:09:56 WARNING (SyncWorker_6) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' status is unknown: '255'.
2019-11-11 19:09:56 WARNING (SyncWorker_6) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:09:56 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial command: 'b'\xaa\x04N\x00\x02\x02''.
2019-11-11 19:09:56 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial response: 'b'\x05M\x00\x10\x04\xf0\xaa''.
2019-11-11 19:09:56 WARNING (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' status is unknown: '240'.
2019-11-11 19:09:56 ERROR (SyncWorker_1) [custom_components.elero] Elero - The response not just one channel: '{3, 13}'.
2019-11-11 19:09:56 DEBUG (SyncWorker_10) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial command: 'b'\xaa\x04N\x08\x00\xfc''.
2019-11-11 19:09:56 DEBUG (SyncWorker_10) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial response: 'b'\x05M\x00\x02\x01\x01\xaa''.
2019-11-11 19:09:56 ERROR (SyncWorker_10) [custom_components.elero] Elero - The response not just one channel: '{1, 10}'.
2019-11-11 19:09:56 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial command: 'b'\xaa\x04N\x00\x01\x03''.
2019-11-11 19:09:56 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial response: 'b'\x05M\x08\x00\x01\xfb\xaa''.
2019-11-11 19:09:56 WARNING (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' status is unknown: '251'.
2019-11-11 19:09:56 WARNING (SyncWorker_2) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:09:56 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial command: 'b'\xaa\x04N\x00@\xc4''.
2019-11-11 19:09:57 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial response: 'b'\x05M\x00\x01\x01\x02\xaa''.
2019-11-11 19:09:57 ERROR (SyncWorker_14) [custom_components.elero] Elero - The response not just one channel: '{9, 1}'.
2019-11-11 19:09:57 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial command: 'b'\xaa\x04N\x02\x00\x02''.
2019-11-11 19:09:57 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial response: 'b'\x05M\x00@\x02\xc2\xaa''.
2019-11-11 19:09:57 WARNING (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' status is unknown: '194'.
2019-11-11 19:09:57 ERROR (SyncWorker_9) [custom_components.elero] Elero - The response not just one channel: '{2, 15}'.
2019-11-11 19:09:57 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial command: 'b'\xaa\x04N\x00\x08\xfc''.
2019-11-11 19:09:58 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial response: 'b'\x05M\x02\x00\x01\x01\xaa''.
2019-11-11 19:09:58 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial command: 'b'\xaa\x04N\x10\x00\xf4''.
2019-11-11 19:09:58 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial response: 'b'\x05M\x00\x08\x02\xfa\xaa''.
2019-11-11 19:09:58 WARNING (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' status is unknown: '250'.
2019-11-11 19:09:58 ERROR (SyncWorker_12) [custom_components.elero] Elero - The response not just one channel: '{2, 12}'.
2019-11-11 19:09:58 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial command: 'b'\xaa\x04N\x00 \xe4''.
2019-11-11 19:09:58 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial response: 'b'\x05M\x10\x00\x01\xf3\xaa''.
2019-11-11 19:09:58 WARNING (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' status is unknown: '243'.
2019-11-11 19:09:58 WARNING (SyncWorker_15) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:09:58 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial command: 'b'\xaa\x04N\x00\x04\x00''.
2019-11-11 19:09:58 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial response: 'b'\x05M\x00 \x02\xe2\xaa''.
2019-11-11 19:09:58 WARNING (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' status is unknown: '226'.
2019-11-11 19:09:58 ERROR (SyncWorker_11) [custom_components.elero] Elero - The response not just one channel: '{2, 14}'.
2019-11-11 19:09:58 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial command: 'b'\xaa\x04N\x01\x00\x03''.
2019-11-11 19:09:59 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial response: 'b'\x05M\x00\x04\x02\xfe\xaa''.
2019-11-11 19:09:59 WARNING (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' status is unknown: '254'.
2019-11-11 19:09:59 ERROR (SyncWorker_8) [custom_components.elero] Elero - The response not just one channel: '{2, 11}'.
2019-11-11 19:10:12 DEBUG (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial command: 'b'\xaa\x04N\x00\x02\x02''.
2019-11-11 19:10:12 DEBUG (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial response: 'b'\x05M\x01\x00\x02\x01\xaa''.
2019-11-11 19:10:12 DEBUG (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial command: 'b'\xaa\x04N\x02\x00\x02''.
2019-11-11 19:10:12 DEBUG (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial response: 'b'\x05M\x00\x02\x01\x01\xaa''.
2019-11-11 19:10:12 ERROR (SyncWorker_19) [custom_components.elero] Elero - The response not just one channel: '{1, 10}'.
2019-11-11 19:10:12 DEBUG (SyncWorker_5) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial command: 'b'\xaa\x04N\x10\x00\xf4''.
2019-11-11 19:10:12 DEBUG (SyncWorker_5) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial response: 'b'\x05M\x02\x00\x01\x01\xaa''.
2019-11-11 19:10:13 DEBUG (SyncWorker_4) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial command: 'b'\xaa\x04N\x00\x01\x03''.
2019-11-11 19:10:13 DEBUG (SyncWorker_4) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial response: 'b'\x05M\x10\x00\x01\xf3\xaa''.
2019-11-11 19:10:13 WARNING (SyncWorker_4) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' status is unknown: '243'.
2019-11-11 19:10:13 WARNING (SyncWorker_4) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:10:13 DEBUG (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial command: 'b'\xaa\x04N\x01\x00\x03''.
2019-11-11 19:10:14 DEBUG (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial response: 'b'\x05M\x00\x01\x01\x02\xaa''.
2019-11-11 19:10:14 ERROR (SyncWorker_17) [custom_components.elero] Elero - The response not just one channel: '{9, 1}'.
2019-11-11 19:10:14 DEBUG (SyncWorker_6) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial command: 'b'\xaa\x04N\x00@\xc4''.
2019-11-11 19:10:14 DEBUG (SyncWorker_6) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial response: 'b'\x05M\x01\x00\x02\x01\xaa''.
2019-11-11 19:10:14 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial command: 'b'\xaa\x04N\x08\x00\xfc''.
2019-11-11 19:10:14 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial response: 'b'\x05M\x00@\x02\xc2\xaa''.
2019-11-11 19:10:14 WARNING (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' status is unknown: '194'.
2019-11-11 19:10:14 ERROR (SyncWorker_8) [custom_components.elero] Elero - The response not just one channel: '{2, 15}'.
2019-11-11 19:10:14 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial command: 'b'\xaa\x04N\x00\x04\x00''.
2019-11-11 19:10:14 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial response: 'b'\x05M\x08\x00\x01\xfb\xaa''.
2019-11-11 19:10:14 WARNING (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' status is unknown: '251'.
2019-11-11 19:10:14 WARNING (SyncWorker_14) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:10:14 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial command: 'b'\xaa\x04N\x04\x00\x00''.
2019-11-11 19:10:14 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial response: 'b'\x05M\x00\x04\x02\xfe\xaa''.
2019-11-11 19:10:14 WARNING (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' status is unknown: '254'.
2019-11-11 19:10:14 ERROR (SyncWorker_9) [custom_components.elero] Elero - The response not just one channel: '{2, 11}'.
2019-11-11 19:10:14 DEBUG (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial command: 'b'\xaa\x04N\x00 \xe4''.
2019-11-11 19:10:15 DEBUG (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial response: 'b'\x05M\x04\x00\x01\xff\xaa''.
2019-11-11 19:10:15 WARNING (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' status is unknown: '255'.
2019-11-11 19:10:15 WARNING (SyncWorker_7) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:10:15 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial command: 'b'\xaa\x04N\x00\x08\xfc''.
2019-11-11 19:10:15 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial response: 'b'\x05M\x00 \x02\xe2\xaa''.
2019-11-11 19:10:15 WARNING (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' status is unknown: '226'.
2019-11-11 19:10:15 ERROR (SyncWorker_15) [custom_components.elero] Elero - The response not just one channel: '{2, 14}'.
2019-11-11 19:10:15 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial command: 'b'\xaa\x04N\x00\x80\x84''.
2019-11-11 19:10:15 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial response: 'b'\x05M\x00\x08\x02\xfa\xaa''.
2019-11-11 19:10:15 WARNING (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' status is unknown: '250'.
2019-11-11 19:10:15 ERROR (SyncWorker_11) [custom_components.elero] Elero - The response not just one channel: '{2, 12}'.
2019-11-11 19:10:15 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial command: 'b'\xaa\x04N\x00\x10\xf4''.
2019-11-11 19:10:15 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial response: 'b'\x05M\x00\x80\x01\x83\xaa''.
2019-11-11 19:10:15 WARNING (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' status is unknown: '131'.
2019-11-11 19:10:15 ERROR (SyncWorker_1) [custom_components.elero] Elero - The response not just one channel: '{16, 1}'.
2019-11-11 19:10:28 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial command: 'b'\xaa\x04N\x00\x02\x02''.
2019-11-11 19:10:28 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial response: 'b'\x05M\x00\x10\x04\xf0\xaa''.
2019-11-11 19:10:28 WARNING (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' status is unknown: '240'.
2019-11-11 19:10:28 ERROR (SyncWorker_8) [custom_components.elero] Elero - The response not just one channel: '{3, 13}'.
2019-11-11 19:10:28 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial command: 'b'\xaa\x04N\x00@\xc4''.
2019-11-11 19:10:28 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial response: 'b'\x05M\x00\x02\x01\x01\xaa''.
2019-11-11 19:10:28 ERROR (SyncWorker_14) [custom_components.elero] Elero - The response not just one channel: '{1, 10}'.
2019-11-11 19:10:28 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial command: 'b'\xaa\x04N\x02\x00\x02''.
2019-11-11 19:10:29 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial response: 'b'\x05M\x00@\x02\xc2\xaa''.
2019-11-11 19:10:29 WARNING (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' status is unknown: '194'.
2019-11-11 19:10:29 ERROR (SyncWorker_9) [custom_components.elero] Elero - The response not just one channel: '{2, 15}'.
2019-11-11 19:10:29 DEBUG (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial command: 'b'\xaa\x04N\x10\x00\xf4''.
2019-11-11 19:10:29 DEBUG (SyncWorker_7) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial response: 'b'\x05M\x02\x00\x01\x01\xaa''.
2019-11-11 19:10:29 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial command: 'b'\xaa\x04N\x00\x04\x00''.
2019-11-11 19:10:29 DEBUG (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial response: 'b'\x05M\x10\x00\x01\xf3\xaa''.
2019-11-11 19:10:29 WARNING (SyncWorker_15) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' status is unknown: '243'.
2019-11-11 19:10:29 WARNING (SyncWorker_15) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:10:29 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial command: 'b'\xaa\x04N\x00\x10\xf4''.
2019-11-11 19:10:29 DEBUG (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial response: 'b'\x05M\x00\x04\x02\xfe\xaa''.
2019-11-11 19:10:29 WARNING (SyncWorker_11) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' status is unknown: '254'.
2019-11-11 19:10:29 ERROR (SyncWorker_11) [custom_components.elero] Elero - The response not just one channel: '{2, 11}'.
2019-11-11 19:10:29 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial command: 'b'\xaa\x04N\x00 \xe4''.
2019-11-11 19:10:29 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial response: 'b'\x05M\x00\x10\x04\xf0\xaa''.
2019-11-11 19:10:29 WARNING (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' status is unknown: '240'.
2019-11-11 19:10:29 ERROR (SyncWorker_1) [custom_components.elero] Elero - The response not just one channel: '{3, 13}'.
2019-11-11 19:10:29 DEBUG (SyncWorker_4) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial command: 'b'\xaa\x04N\x01\x00\x03''.
2019-11-11 19:10:30 DEBUG (SyncWorker_4) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial response: 'b'\x05M\x00 \x02\xe2\xaa''.
2019-11-11 19:10:30 WARNING (SyncWorker_4) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' status is unknown: '226'.
2019-11-11 19:10:30 ERROR (SyncWorker_4) [custom_components.elero] Elero - The response not just one channel: '{2, 14}'.
2019-11-11 19:10:30 DEBUG (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial command: 'b'\xaa\x04N\x00\x80\x84''.
2019-11-11 19:10:30 DEBUG (SyncWorker_17) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial response: 'b'\x05M\x01\x00\x02\x01\xaa''.
2019-11-11 19:10:30 DEBUG (SyncWorker_10) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial command: 'b'\xaa\x04N\x00\x01\x03''.
2019-11-11 19:10:30 DEBUG (SyncWorker_10) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial response: 'b'\x05M\x00\x80\x01\x83\xaa''.
2019-11-11 19:10:30 WARNING (SyncWorker_10) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' status is unknown: '131'.
2019-11-11 19:10:30 ERROR (SyncWorker_10) [custom_components.elero] Elero - The response not just one channel: '{16, 1}'.
2019-11-11 19:10:30 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial command: 'b'\xaa\x04N\x04\x00\x00''.
2019-11-11 19:10:31 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial response: 'b'\x05M\x00\x01\x01\x02\xaa''.
2019-11-11 19:10:31 ERROR (SyncWorker_0) [custom_components.elero] Elero - The response not just one channel: '{9, 1}'.
2019-11-11 19:10:31 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial command: 'b'\xaa\x04N\x00\x08\xfc''.
2019-11-11 19:10:31 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial response: 'b'\x05M\x04\x00\x01\xff\xaa''.
2019-11-11 19:10:31 WARNING (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' status is unknown: '255'.
2019-11-11 19:10:31 WARNING (SyncWorker_12) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:10:31 DEBUG (SyncWorker_18) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial command: 'b'\xaa\x04N\x08\x00\xfc''.
2019-11-11 19:10:31 DEBUG (SyncWorker_18) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial response: 'b'\x05M\x00\x08\x02\xfa\xaa''.
2019-11-11 19:10:31 WARNING (SyncWorker_18) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' status is unknown: '250'.
2019-11-11 19:10:31 ERROR (SyncWorker_18) [custom_components.elero] Elero - The response not just one channel: '{2, 12}'.
2019-11-11 19:10:44 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial command: 'b'\xaa\x04N\x00\x10\xf4''.
2019-11-11 19:10:44 DEBUG (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial response: 'b'\x05M\x08\x00\x01\xfb\xaa''.
2019-11-11 19:10:44 WARNING (SyncWorker_8) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' status is unknown: '251'.
2019-11-11 19:10:44 WARNING (SyncWorker_8) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:10:44 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial command: 'b'\xaa\x04N\x00\x04\x00''.
2019-11-11 19:10:44 DEBUG (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial response: 'b'\x05M\x00\x10\x04\xf0\xaa''.
2019-11-11 19:10:44 WARNING (SyncWorker_14) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' status is unknown: '240'.
2019-11-11 19:10:44 ERROR (SyncWorker_14) [custom_components.elero] Elero - The response not just one channel: '{3, 13}'.
2019-11-11 19:10:44 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial command: 'b'\xaa\x04N\x00\x80\x84''.
2019-11-11 19:10:44 DEBUG (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial response: 'b'\x05M\x00\x04\x02\xfe\xaa''.
2019-11-11 19:10:44 WARNING (SyncWorker_12) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' status is unknown: '254'.
2019-11-11 19:10:44 ERROR (SyncWorker_12) [custom_components.elero] Elero - The response not just one channel: '{2, 11}'.
2019-11-11 19:10:44 DEBUG (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial command: 'b'\xaa\x04N\x00 \xe4''.
2019-11-11 19:10:44 DEBUG (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' serial response: 'b'\x05M\x00\x80\x01\x83\xaa''.
2019-11-11 19:10:44 WARNING (SyncWorker_19) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '6' status is unknown: '131'.
2019-11-11 19:10:44 ERROR (SyncWorker_19) [custom_components.elero] Elero - The response not just one channel: '{16, 1}'.
2019-11-11 19:10:44 DEBUG (SyncWorker_5) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial command: 'b'\xaa\x04N\x00\x08\xfc''.
2019-11-11 19:10:44 DEBUG (SyncWorker_5) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' serial response: 'b'\x05M\x00 \x02\xe2\xaa''.
2019-11-11 19:10:44 WARNING (SyncWorker_5) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '4' status is unknown: '226'.
2019-11-11 19:10:44 ERROR (SyncWorker_5) [custom_components.elero] Elero - The response not just one channel: '{2, 14}'.
2019-11-11 19:10:44 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial command: 'b'\xaa\x04N\x00\x01\x03''.
2019-11-11 19:10:44 DEBUG (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial response: 'b'\x05M\x00\x08\x02\xfa\xaa''.
2019-11-11 19:10:44 WARNING (SyncWorker_2) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' status is unknown: '250'.
2019-11-11 19:10:44 ERROR (SyncWorker_2) [custom_components.elero] Elero - The response not just one channel: '{2, 12}'.
2019-11-11 19:10:44 DEBUG (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial command: 'b'\xaa\x04N\x00\x02\x02''.
2019-11-11 19:10:44 DEBUG (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '2' serial response: 'b'\x05M\x00\x01\x01\x02\xaa''.
2019-11-11 19:10:44 ERROR (SyncWorker_3) [custom_components.elero] Elero - The response not just one channel: '{9, 1}'.
2019-11-11 19:10:44 DEBUG (SyncWorker_16) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial command: 'b'\xaa\x04N\x04\x00\x00''.
2019-11-11 19:10:45 DEBUG (SyncWorker_16) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial response: 'b'\x05M\x00\x02\x01\x01\xaa''.
2019-11-11 19:10:45 ERROR (SyncWorker_16) [custom_components.elero] Elero - The response not just one channel: '{1, 10}'.
2019-11-11 19:10:45 DEBUG (SyncWorker_13) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial command: 'b'\xaa\x04N\x01\x00\x03''.
2019-11-11 19:10:46 DEBUG (SyncWorker_13) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial response: 'b'\x05M\x04\x00\x01\xff\xaa''.
2019-11-11 19:10:46 WARNING (SyncWorker_13) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' status is unknown: '255'.
2019-11-11 19:10:46 WARNING (SyncWorker_13) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:10:46 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial command: 'b'\xaa\x04N\x08\x00\xfc''.
2019-11-11 19:10:46 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '12' serial response: 'b'\x05M\x01\x00\x02\x01\xaa''.
2019-11-11 19:10:46 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial command: 'b'\xaa\x04N\x10\x00\xf4''.
2019-11-11 19:10:47 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' serial response: 'b'\x05M\x08\x00\x01\xfb\xaa''.
2019-11-11 19:10:47 WARNING (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '13' status is unknown: '251'.
2019-11-11 19:10:47 WARNING (SyncWorker_0) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:10:47 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial command: 'b'\xaa\x04N\x02\x00\x02''.
2019-11-11 19:10:47 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' serial response: 'b'\x05M\x10\x00\x01\xf3\xaa''.
2019-11-11 19:10:47 WARNING (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '10' status is unknown: '243'.
2019-11-11 19:10:47 WARNING (SyncWorker_9) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:10:47 DEBUG (SyncWorker_18) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial command: 'b'\xaa\x04N\x00@\xc4''.
2019-11-11 19:10:48 DEBUG (SyncWorker_18) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '7' serial response: 'b'\x05M\x02\x00\x01\x01\xaa''.
2019-11-11 19:11:00 DEBUG (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial command: 'b'\xaa\x04N\x00\x10\xf4''.
2019-11-11 19:11:00 DEBUG (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' serial response: 'b'\x05M\x00@\x02\xc2\xaa''.
2019-11-11 19:11:00 WARNING (SyncWorker_3) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '5' status is unknown: '194'.
2019-11-11 19:11:00 ERROR (SyncWorker_3) [custom_components.elero] Elero - The response not just one channel: '{2, 15}'.
2019-11-11 19:11:00 DEBUG (SyncWorker_16) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial command: 'b'\xaa\x04N\x04\x00\x00''.
2019-11-11 19:11:00 DEBUG (SyncWorker_16) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' serial response: 'b'\x05M\x00\x10\x04\xf0\xaa''.
2019-11-11 19:11:00 WARNING (SyncWorker_16) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '11' status is unknown: '240'.
2019-11-11 19:11:00 ERROR (SyncWorker_16) [custom_components.elero] Elero - The response not just one channel: '{3, 13}'.
2019-11-11 19:11:00 DEBUG (SyncWorker_13) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial command: 'b'\xaa\x04N\x00\x04\x00''.
2019-11-11 19:11:00 DEBUG (SyncWorker_13) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' serial response: 'b'\x05M\x04\x00\x01\xff\xaa''.
2019-11-11 19:11:00 WARNING (SyncWorker_13) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '3' status is unknown: '255'.
2019-11-11 19:11:00 WARNING (SyncWorker_13) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' Unhandled response: 'unknown response'.
2019-11-11 19:11:00 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial command: 'b'\xaa\x04N\x00\x80\x84''.
2019-11-11 19:11:00 DEBUG (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' serial response: 'b'\x05M\x00\x04\x02\xfe\xaa''.
2019-11-11 19:11:00 WARNING (SyncWorker_1) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '8' status is unknown: '254'.
2019-11-11 19:11:00 ERROR (SyncWorker_1) [custom_components.elero] Elero - The response not just one channel: '{2, 11}'.
2019-11-11 19:11:00 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial command: 'b'\xaa\x04N\x00\x01\x03''.
2019-11-11 19:11:00 DEBUG (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' serial response: 'b'\x05M\x00\x80\x01\x83\xaa''.
2019-11-11 19:11:00 WARNING (SyncWorker_0) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '1' status is unknown: '131'.
2019-11-11 19:11:00 ERROR (SyncWorker_0) [custom_components.elero] Elero - The response not just one channel: '{16, 1}'.
2019-11-11 19:11:00 DEBUG (SyncWorker_9) [custom_components.elero] Elero - transmitter: 'A503EN6C' ch: '9' serial command: 'b'\xaa\x04N\x01\x00\x03''.

I feel that after a fresh reboot of the Home Assistant first it is working fine, but after a few commands more and more errors like this happen.

I am not really sure if this log file helps and/or if I've recorded it correctly, but at least there are some errors which have timestamps quite after having sent a command to the complete group.

cannot use intermediate position and tilt/ventilaton

Accoding to the Elero Stick documentation, there are 5 commands:

image

I've defined a shutter like this:

    - platform: elero
      covers:
          rolloarbeitszimmer:
              serial_number: A503EN6C
              name: Arbeitszimmer
              channel: 1
              device_class: roller shutter
              supported_features:
                  - up
                  - down
                  - stop
                  - set_position
                  - set_tilt_position

It looks like this:

image

But if I use the sliders for position or tilt, just nothing happens.

I can then find in the log file:
2019-11-11 19:39:55 WARNING (SyncWorker_14) [custom_components.elero.cover] Elero - transmitter: 'A503EN6C' ch: '1' The set cover tilt position function is not implemented yet.

So directly I can only click on “open”, “stop” and “close”.
I would expect that there is also something to click on “move to intermediate position” and “move to ventilation position”. Both commands should work without giving an argument to this method. I mean, the Elero shutters only can execute e.g. “move to ventilation position”, but they do not support something like “move 30%”. The both positions “intermediate” and “ventilation” can be programmed separately and are stored in the shutter itself.

It would be great if there would a way how you could send the shutters to the predefined "intermediate position" and "tilt/ventilation". :-)

Integration Broken with 2022.3 - Pyserial

Hi guys, seems we have a problem again :(

Setup failed for custom integration elero: Requirements for elero not found: ['pyserial==3.4'].
Unable to install package pyserial==3.4: ERROR: Cannot install pyserial==3.4 because these package versions have conflicting dependencies. ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts WARNING: You are using pip version 22.0.3; however, version 22.0.4 is available. You should consider upgrading via the '/usr/local/bin/python3 -m pip install --upgrade pip' command.

Integration isn't starting...please take a look at the screenshot from Hass log below:

image

Discover USB devices automatically

Use case
If you have multiple USB devices connected, sometimes after a reboot the device order is changed (ttyUSB0 is ttyUSB1, or the other way around)

Solution
After every boot and start of the HA, during the Elero lib build up, the Elero USB Transmitter sticks should be discovered and set automatically.
No manual adjustment is required after this.

emulate set position and tilt by time driven down and up commands

Hello and big thanks to developer(s) of this component!

Since it is unfortunately not possible with elero transmitter stick to set position and tilt by HW (set_position, open_tilt, close_tilt, stop_tilt, set_tilt_position) would it maybe be possible to emulate this by time driven down and up commands? What i could experiece Elero MultiTel is doing so. There is just some time in 1-second steps for Intermediate position and some 0.1-second time for tilt position.

In case I explaned not detaild enough please let me know.
Thanks in advance!

set_position does not work for my roller shutter

From the documentation, I assume that setting a specific position should work.

When I call set_cover_position on one of my roller shutters I get:

Elero transmitter: '1' ch: '{2}' The set cover position function is not implemented yet.

My config is:

elero:
  transmitters:
  - transmitter_id: 1
    port: '/dev/ttyUSB0'

cover:
  - platform: elero
    covers:
      livingroom_tv:
        name: rollershutter_livingroom_tv
        device_class: roller shutter
        transmitter_id: 1
        channel: 2
        supported_features:
        - up
        - down
        - stop
        - set_position

I am having a Elero RolTop M10-868.

Did I something wrong?

Error manifest.json

After uploading the files and adding the lines in the configuration file, I get the following error in the homeassistang logfile:
Error parsing manifest.json file at /config/custom_components/elero/manifest.json: Expecting value: line 7 column 1 (char 6)

Elero Addon not working anymore with HA 2023-04-b02

First Thanks for your great work.
Under HO 2023-04-b02 (I didn't try b1) it stopped working.
the following warning comes in my logs:

  • 2023-04-01 15:14:59.260 WARNING (MainThread) [homeassistant.components.cover] Updating elero cover took longer than the scheduled update interval 0:00:15

In addition my covers cannot be controlled anymore.
Thank you in advance

Thomas

Shutter status not correct

After using shutter controls for a while, shutter status in Home Assistant stops showing actual values.
It starts switching from open to close and vice versa indefinitely (until you use cover.stop service).

That is a pretty big issue, since HA doesn't have the actual state and therefore you can't open a shutter which appears to be open already (although is closed).

Problem becomes even bigger if you control a group (I have 10 shutters), then there is simply no way to control them all at once.

Great first build though :) Really appreciate the effort!

closed_tilt in main overview possible?

Hi @W00D00

Thank you very much for this great component!

I am just learning to use it.

I have some elero venizien covers.
I can open and close them as expected.
And when going into the pop-up-window, I also can open the shut ones again half way (I guess this is called closed_tilt).

In the readme you mention "Nevertheless, these controls are shown and useable only if the pop-up window of the given cover is open".
Is this a technical limitation? I would like to have the closed_tilt beside the open/close/stop buttons in the main overview. is this somehow possible?

Elero Stick Training mode

First of all thanks for this great integration!
I managed to connect all my shutters to the elero stick and can control them in Home Assistant!
The only „issue“ I have is that the stick seems to be permanently in teaching mode according to the rapidly orange blinking of the status LED and the description in the manual (https://www.elero.com/en/downloads-service/downloads/?tx_avelero_downloads%5Bdownload%5D=319&tx_avelero_downloads%5Baction%5D=download&cHash=5cf4212966ff0d58470d8cc9aa029066) Is this normal or is there any way to exit the training mode?

Thanks!

Issues discovering elero stick

Hi Istvan,

great work!

I had some troubles finding the correct id of the transmitter stick and I'm not a 100% sure, what went wrong.

TLDR: hass.io's packaging of Home Assistant into a container might break the discovery.

The logs did not show any information about the elero stick, so I did some debugging.

The discovery did not display any Elero sticks, so I wrote a small script (from your sources) to discover the usb stick.

#!env python
import serial
from serial.tools import list_ports
import logging

# Default serial info
DEFAULT_BRAND = 'elero'
DEFAULT_PRODUCT = 'Transmitter Stick'

_LOGGER = logging.getLogger(__name__)
logging.basicConfig(level=logging.INFO)

ports = list_ports.comports()
_LOGGER.info("discovering elero devices")
_LOGGER.info("found %s devices", len(ports))
for cp in ports:
    _LOGGER.info("USB Device: %s %s %s %s", cp.manufacturer, cp.product, cp.device, cp.serial_number)
    if (cp and cp.manufacturer and DEFAULT_BRAND in cp.manufacturer and cp.product and
            DEFAULT_PRODUCT in cp.product):
        _LOGGER.info("Elero - an Elero Transmitter Stick is found on port: '{}'"
                     " with serial number: '{}'.".format(cp.device, cp.serial_number))

It worked in the first place, but now I got:

INFO:__main__:discovering elero devices
INFO:__main__:found 2 devices
INFO:__main__:USB Device: None None /dev/ttyUSB0 None
INFO:__main__:USB Device: None None /dev/ttyAMA0 None

I'm not sure why it worked in the first place but now it didn't.

I'm using Home Assistant with hass.io on a Raspberry Pi4. To execute the code I've used the Cloud9 IDE, running in unprotected mode.

After a restart of Cloud9 I was able to get the the ID of the stick:

INFO:__main__:discovering elero devices
INFO:__main__:found 2 devices
INFO:__main__:USB Device: elero GmbH Transmitter Stick /dev/ttyUSB1 XXXXX
INFO:__main__:Elero - an Elero Transmitter Stick is found on port: '/dev/ttyUSB1' with serial number: 'XXXXX'.
INFO:__main__:USB Device: None None /dev/ttyAMA0 None

So I think the cause of the issue is that Home Assistant is running in a Docker container.
I don't know if there is an easy workaround for that issue.

New commands in HA Core 2025.1

In my log, there is following warning:

Logger: homeassistant.components.cover
Quelle: helpers/deprecation.py:205
Integration: Abdeckung (Dokumentation, Probleme)
Erstmals aufgetreten: 17:10:34 (16 Vorkommnisse)
Zuletzt protokolliert: 17:10:34

SUPPORT_OPEN_TILT was used from elero, this is a deprecated constant which will be removed in HA Core 2025.1. Use CoverEntityFeature.OPEN_TILT instead, please report it to the author of the 'elero' custom integration
SUPPORT_SET_POSITION was used from elero, this is a deprecated constant which will be removed in HA Core 2025.1. Use CoverEntityFeature.SET_POSITION instead, please report it to the author of the 'elero' custom integration
SUPPORT_SET_TILT_POSITION was used from elero, this is a deprecated constant which will be removed in HA Core 2025.1. Use CoverEntityFeature.SET_TILT_POSITION instead, please report it to the author of the 'elero' custom integration
SUPPORT_STOP was used from elero, this is a deprecated constant which will be removed in HA Core 2025.1. Use CoverEntityFeature.STOP instead, please report it to the author of the 'elero' custom integration
SUPPORT_STOP_TILT was used from elero, this is a deprecated constant which will be removed in HA Core 2025.1. Use CoverEntityFeature.STOP_TILT instead, please report it to the author of the 'elero' custom integration

Adding Unique IDs

Hi @W00D00,
would it be possible to add a Unique ID to the covers in order to be able to manage them also in the UI?

image

Would be great! :)

BR

Unable to install package pyserial==3.4: ERROR: Cannot install pyserial==3.4 because these package versions have conflicting dependencies.

Hi,
I was using this custom component on my rpi4 and HASS OS some months without any issue. Now I have bought an Intel NUC and have HASS OS running in a VM. Everything is working, but this custom component make some troubles: I copied the elero folder in the custom component folder, configurated the /config/configuration.yaml file and its all linked files like covers and groups like on my rpi4 and then tried to restart HomeAssistant. But this is not possible - I get the following error:

2022-03-03 15:08:55 INFO (SyncWorker_8) [homeassistant.util.package] Attempting install of pyserial==3.4
2022-03-03 15:08:57 ERROR (SyncWorker_8) [homeassistant.util.package] Unable to install package pyserial==3.4: ERROR: Cannot install pyserial==3.4 because these package versions have conflicting dependencies.
ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts
2022-03-03 15:08:57 INFO (SyncWorker_1) [homeassistant.util.package] Attempting install of pyserial==3.4
2022-03-03 15:08:58 ERROR (SyncWorker_1) [homeassistant.util.package] Unable to install package pyserial==3.4: ERROR: Cannot install pyserial==3.4 because these package versions have conflicting dependencies.
ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts
2022-03-03 15:08:58 INFO (SyncWorker_3) [homeassistant.util.package] Attempting install of pyserial==3.4
2022-03-03 15:08:59 ERROR (SyncWorker_3) [homeassistant.util.package] Unable to install package pyserial==3.4: ERROR: Cannot install pyserial==3.4 because these package versions have conflicting dependencies.
ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts
2022-03-03 15:08:59 INFO (MainThread) [homeassistant.requirements] Multiple attempts to install pyserial==3.4 failed, install will be retried after next configuration check or restart
2022-03-03 15:08:59 ERROR (MainThread) [homeassistant.components.hassio] The system cannot restart because the configuration is not valid: Integration error: elero - Requirements for elero not found: ['pyserial==3.4'].
Platform error cover.elero - Requirements for elero not found: ['pyserial==3.4'].
2022-03-03 15:08:59 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140408585593376] The system cannot restart because the configuration is not valid: Integration error: elero - Requirements for elero not found: ['pyserial==3.4'].
Platform error cover.elero - Requirements for elero not found: ['pyserial==3.4'].
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/components/websocket_api/commands.py", line 192, in handle_call_service
await hass.services.async_call(
File "/usr/src/homeassistant/homeassistant/core.py", line 1636, in async_call
task.result()
File "/usr/src/homeassistant/homeassistant/core.py", line 1673, in _execute_service
await cast(Callable[[ServiceCall], Awaitable[None]], handler.job.target)(
File "/usr/src/homeassistant/homeassistant/components/hassio/__init__.py", line 610, in async_handle_core_service
raise HomeAssistantError(
homeassistant.exceptions.HomeAssistantError: The system cannot restart because the configuration is not valid: Integration error: elero - Requirements for elero not found: ['pyserial==3.4'].
Platform error cover.elero - Requirements for elero not found: ['pyserial==3.4'].

UNRAID 0.9.2
Home Assistant core-2022.3.0
Home Assistant OS 7.4
supervisor-2022.01.1
Python-Version | 3.9.9

How can I fix this issue?

Thank you in advance!

Elero custom_component not working in HA 2022.3

The elero component is not available in the latest HA release.

I tried the suggestion to change the requirement for the library like this:

init.py:
REQUIREMENTS = ["pyserial==3.5"]

manifest.json:
"requirements": ["pyserial==3.5"],

But it's not loading.

Updated Elero & HomeAssistant - AutoDiscovery not working?

Hi,

I just upgraded to the latest version of HomeAssistant and you Elero component. According to the Readme I removed the transmitter_id and port entries and rebooted HA. Unfortunately I cannot find an entry for the stick in the log file and therefore no serial number.

2020-07-12 20:15:06 WARNING (MainThread) [homeassistant.loader] You are using a custom integration for elero which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant.
2020-07-12 20:15:06 WARNING (MainThread) [homeassistant.loader] You are using a custom integration for shelly which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant.

HA is running inside docker, the /dev/ttyUSB permissions are:

mbr@server:~$ sudo docker exec -ti HomeAssistant /bin/sh
/config # ls -la /dev/ttyUSB0 
crw-rw-rw-    1 root     root      188,   0 Jul 12 20:15 /dev/ttyUSB0

regards,
Michael

Upd 1 - lsusb

mbr@server:~$ lsusb 
|__usb1          1d6b:0002:0404 09  2.00  480MBit/s 0mA 1IF  (Linux 4.4.59+ xhci-hcd xHCI Host Controller 0000:00:15.0) hub
  |__1-3         0403:6001:0600 00  2.00   12MBit/s 64mA 1IF  (elero GmbH Transmitter Stick A601IUE3)
  |__1-4         f400:f400:0100 00  2.00  480MBit/s 200mA 1IF  (Synology DiskStation 650078DE8FE41673)
|__usb2          1d6b:0003:0404 09  3.00 5000MBit/s 0mA 1IF  (Linux 4.4.59+ xhci-hcd xHCI Host Controller 0000:00:15.0) hub

issues in log file with HA 2023.5.0

Hello,
since updating to the latest HA version I see the following errors in the log (which I didn't had before):

Logger: custom_components.elero.cover
Source: custom_components/elero/cover.py:293
Integration: Elero ([documentation](https://github.com/W00D00/home-assistant-elero))
First occurred: 00:00:52 (3 occurrences)
Last logged: 00:00:52

Transmitter: 'AU00U9UZ' ch: '2' error response: 'blocking'.
Transmitter: 'AU00U9UZ' ch: '4' error response: 'blocking'.
Transmitter: 'AU00U9UZ' ch: '6' error response: 'blocking'.
Logger: custom_components.elero
Source: custom_components/elero/__init__.py:392
Integration: Elero ([documentation](https://github.com/W00D00/home-assistant-elero))
First occurred: 00:00:52 (8 occurrences)
Last logged: 00:00:52

The channel is not learned 'AU00U9UZ' on the transmitter: '12'.
The channel is not learned 'AU00U9UZ' on the transmitter: '13'.
The channel is not learned 'AU00U9UZ' on the transmitter: '14'.
The channel is not learned 'AU00U9UZ' on the transmitter: '15'.
The channel is not learned 'AU00U9UZ' on the transmitter: '16'.
Logger: homeassistant.helpers.entity
Source: custom_components/elero/__init__.py:540
Integration: Elero ([documentation](https://github.com/W00D00/home-assistant-elero))
First occurred: 00:08:34 (34 occurrences)
Last logged: 09:32:50

Update for cover.wohnzimmerfixverglasung fails
Update for cover.gaestezimmerfenster fails
Update for cover.schlafzimmer fails
Update for cover.wohnzimmerbalkontuer fails
Update for cover.buerobalkontuer fails
Traceback (most recent call last):
  File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 554, in async_update_ha_state
    await self.async_device_update()
  File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 784, in async_device_update
    await coro
  File "/usr/local/lib/python3.10/concurrent/futures/thread.py", line 58, in run
    result = self.fn(*self.args, **self.kwargs)
  File "/config/custom_components/elero/cover.py", line 257, in update
    self._transmitter.info(self._channel)
  File "/config/custom_components/elero/__init__.py", line 347, in info
    self.__process_command(
  File "/config/custom_components/elero/__init__.py", line 485, in __process_command
    resp = self.__parse_response(ser_resp, channel)
  File "/config/custom_components/elero/__init__.py", line 540, in __parse_response
    response["command"] = ser_resp[2]
IndexError: index out of range
Logger: custom_components.elero.cover
Source: custom_components/elero/cover.py:257
Integration: Elero ([documentation](https://github.com/W00D00/home-assistant-elero))
First occurred: 00:00:46 (574 occurrences)
Last logged: 10:34:05

Transmitter: 'AU00U9UZ' ch: '6' unhandled response: 'unknown response'.
Transmitter: 'AU00U9UZ' ch: '7' unhandled response: 'unknown response'.
Transmitter: 'AU00U9UZ' ch: '1' unhandled response: 'unknown response'.
Transmitter: 'AU00U9UZ' ch: '2' unhandled response: 'unknown response'.
Transmitter: 'AU00U9UZ' ch: '1' unhandled response: 'None'.

Anybody else? @W00D00 : How can we fix the issues?

Thanks!

Installation via HACS

Thanks for this great integration! I'm looking forward to using it.

However: I would suggest the possibility to install this repo via HACS. To be able to do this it needs a special repo-structure. Compare f.e. with https://github.com/kraineff/minecraft-version

As far as I can tell it's just a re-structuring of the root repo tree. At the moment I get this error:

Error

elero cover component: split up "name" to name and id (or frendly_name and uinque_id)

Hello and big thanks to developer(s) of this component!

I have one feature request (if not yet available and I may have just overseen it since I am new to homeassistant):
Would it be possible to add functionality for elero cover component to split up "name" to name and id (or to frendly_name and uinque_id) inside configuration.yaml so that name for GUI can be set differently and with no restrictions? I mean similar to e.g. Template Cover (https://www.home-assistant.io/integrations/cover.template/).

In case I explaned not detaild enough please let me know.

Thanks in advance!

Integration with Alexa (nabucasa)

First of all thank you for this fantastic integration! It is very useful.
I have the "Centero home", but practically I don't use it anymore.

Here is my question:
I have 6 "device_class: awning"
In the integration with Alexa (with NabuCasa) I only have "open" and "close", but not "stop".
Is there a way to also have the "stop"?

Thank you
Dante

Remote Access of Stick

Hi, its not an issue, its a question:

My Home Assistant installation is running in the basement, but my elero shutters are in the third floor.

I have an RPi running in the third floor.

Would there be an option to either remotley connect from home assistant to a stick which is on a different system or setup a eleror2mqtt bridge?

Best Regards,
Johannes

Roller Shutter Exposed as "Motorized Window" to HomeKit

Integration into HomeKit did work (as long as set_position, stop_tilt, set_tilt_position are listed in the features). However, the shutters are exposed as windows which causes iOS to not allow the shutters to be part of automations without unlocking.
Furthermore, the icon is therefore wrong and some unexpected values are shown which are not applicable to shutters (but to motorized windows).

Is there a way I can change this, maybe by setting some customizations?

Home Assistant 2021.12 error log

This shows up in the log in the latest update:

Entity cover.una_1 (<class 'custom_components.elero.cover.EleroCover'>) implements device_state_attributes. Please report it to the custom component author.

From what I read we have to replace "device_state_attributes" with "extra_state_attributes".

Can you please make that change so that these errors stop showing.

Much appreciated!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.