Zigbeed_1:
CREATE UNIQUE INDEX groups_idx_v10
ON groups_v10(group_id)', [])
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, '
CREATE UNIQUE INDEX groups_idx_v10
ON groups_v10(group_id)', []) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, '
-- group members
DROP TABLE IF EXISTS group_members_v10', [])
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, '
-- group members
DROP TABLE IF EXISTS group_members_v10', []) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, '
CREATE TABLE group_members_v10 (
group_id INTEGER NOT NULL,
ieee ieee NOT NULL,
endpoint_id INTEGER NOT NULL,
FOREIGN KEY(group_id)
REFERENCES groups_v10(group_id)
ON DELETE CASCADE,
FOREIGN KEY(ieee, endpoint_id)
REFERENCES endpoints_v10(ieee, endpoint_id)
ON DELETE CASCADE
)', [])
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, '
CREATE TABLE group_members_v10 (
group_id INTEGER NOT NULL,
ieee ieee NOT NULL,
endpoint_id INTEGER NOT NULL,
FOREIGN KEY(group_id)
REFERENCES groups_v10(group_id)
ON DELETE CASCADE,
FOREIGN KEY(ieee, endpoint_id)
REFERENCES endpoints_v10(ieee, endpoint_id)
ON DELETE CASCADE
)', []) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, '
CREATE UNIQUE INDEX group_members_idx_v10
ON group_members_v10(group_id, ieee, endpoint_id)', [])
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, '
CREATE UNIQUE INDEX group_members_idx_v10
ON group_members_v10(group_id, ieee, endpoint_id)', []) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, '
-- relays
DROP TABLE IF EXISTS relays_v10', [])
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, '
-- relays
DROP TABLE IF EXISTS relays_v10', []) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, '
CREATE TABLE relays_v10 (
ieee ieee NOT NULL,
relays BLOB NOT NULL,
FOREIGN KEY(ieee)
REFERENCES devices_v10(ieee)
ON DELETE CASCADE
)', [])
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, '
CREATE TABLE relays_v10 (
ieee ieee NOT NULL,
relays BLOB NOT NULL,
FOREIGN KEY(ieee)
REFERENCES devices_v10(ieee)
ON DELETE CASCADE
)', []) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, '
CREATE UNIQUE INDEX relays_idx_v10
ON relays_v10(ieee)', [])
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, '
CREATE UNIQUE INDEX relays_idx_v10
ON relays_v10(ieee)', []) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, '
-- unsupported attributes
DROP TABLE IF EXISTS unsupported_attributes_v10', [])
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, '
-- unsupported attributes
DROP TABLE IF EXISTS unsupported_attributes_v10', []) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, '
CREATE TABLE unsupported_attributes_v10 (
ieee ieee NOT NULL,
endpoint_id INTEGER NOT NULL,
cluster INTEGER NOT NULL,
attrid INTEGER NOT NULL,
FOREIGN KEY(ieee)
REFERENCES devices_v10(ieee)
ON DELETE CASCADE,
FOREIGN KEY(ieee, endpoint_id, cluster)
REFERENCES in_clusters_v10(ieee, endpoint_id, cluster)
ON DELETE CASCADE
)', [])
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, '
CREATE TABLE unsupported_attributes_v10 (
ieee ieee NOT NULL,
endpoint_id INTEGER NOT NULL,
cluster INTEGER NOT NULL,
attrid INTEGER NOT NULL,
FOREIGN KEY(ieee)
REFERENCES devices_v10(ieee)
ON DELETE CASCADE,
FOREIGN KEY(ieee, endpoint_id, cluster)
REFERENCES in_clusters_v10(ieee, endpoint_id, cluster)
ON DELETE CASCADE
)', []) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, '
-- network backups
DROP TABLE IF EXISTS network_backups_v10', []) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, '
CREATE TABLE network_backups_v10 (
id INTEGER PRIMARY KEY AUTOINCREMENT,
backup_json TEXT NOT NULL
)', [])
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, '
CREATE TABLE network_backups_v10 (
id INTEGER PRIMARY KEY AUTOINCREMENT,
backup_json TEXT NOT NULL
)', []) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, '
', []) completed
[2023-02-06 11:44:34][DEBUG] : Loading application state
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM devices_v10', [])
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM devices_v10', []) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c6700a0>, 64)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c6700a0>, 64) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c6700a0>)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c6700a0>) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM node_descriptors_v10', [])
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM node_descriptors_v10', []) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c6700a0>, 64)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c6700a0>, 64) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c6700a0>)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c6700a0>) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM endpoints_v10', [])
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM endpoints_v10', []) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c6700a0>, 64)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c6700a0>, 64) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c6700a0>)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c6700a0>) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM in_clusters_v10', [])
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM in_clusters_v10', []) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c6700a0>, 64)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c6700a0>, 64) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c6700a0>)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c6700a0>) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM out_clusters_v10', [])
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM out_clusters_v10', []) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c670f80>, 64)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c670f80>, 64) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c670f80>)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c670f80>) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM attributes_cache_v10 WHERE attrid=4 OR attrid=5', [])
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM attributes_cache_v10 WHERE attrid=4 OR attrid=5', []) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c670f80>, 64)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c670f80>, 64) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c670f80>)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c670f80>) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM attributes_cache_v10', [])
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM attributes_cache_v10', []) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c670f80>, 64)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c670f80>, 64) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c670f80>)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c670f80>) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM unsupported_attributes_v10', [])
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM unsupported_attributes_v10', []) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c670f80>, 64)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c670f80>, 64) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c670f80>)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c670f80>) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM groups_v10', [])
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM groups_v10', []) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c670f80>, 64)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c670f80>, 64) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c670f80>)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c670f80>) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM group_members_v10', [])
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM group_members_v10', []) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c670f80>, 64)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c670f80>, 64) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c670f80>)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c670f80>) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM relays_v10', [])
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM relays_v10', []) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c670f80>, 64)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c670f80>, 64) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c670f80>)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c670f80>) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM neighbors_v10', [])
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM neighbors_v10', []) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c670f80>, 64)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c670f80>, 64) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c670f80>)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c670f80>) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM network_backups_v10 ORDER BY id', [])
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'SELECT * FROM network_backups_v10 ORDER BY id', []) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c670f80>, 64)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method fetchmany of sqlite3.Cursor object at 0x7f756c670f80>, 64) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c670f80>)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method close of sqlite3.Cursor object at 0x7f756c670f80>) completed
[2023-02-06 11:44:34][DEBUG] : Connecting to /dev/ttyS2
[2023-02-06 11:44:34][ERROR] : Couldn't start application
Traceback (most recent call last):
File "/usr/local/lib/python3.7/dist-packages/serial/serialposix.py", line 398, in _reconfigure_port
orig_attr = termios.tcgetattr(self.fd)
termios.error: (5, 'Input/output error')
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/lib/python3.7/dist-packages/zigpy/application.py", line 118, in startup
await self.connect()
File "/usr/local/lib/python3.7/dist-packages/zigpy_deconz/zigbee/application.py", line 91, in connect
await api.connect()
File "/usr/local/lib/python3.7/dist-packages/zigpy_deconz/api.py", line 270, in connect
self._uart = await zigpy_deconz.uart.connect(self._config, self)
File "/usr/local/lib/python3.7/dist-packages/zigpy_deconz/uart.py", line 142, in connect
xonxoff=False,
File "/usr/local/lib/python3.7/dist-packages/serial_asyncio/__init__.py", line 448, in create_serial_connection
serial_instance = serial.serial_for_url(*args, **kwargs)
File "/usr/local/lib/python3.7/dist-packages/serial/__init__.py", line 90, in serial_for_url
instance.open()
File "/usr/local/lib/python3.7/dist-packages/serial/serialposix.py", line 332, in open
self._reconfigure_port(force_update=True)
File "/usr/local/lib/python3.7/dist-packages/serial/serialposix.py", line 401, in _reconfigure_port
raise SerialException("Could not configure port: {}".format(msg))
serial.serialutil.SerialException: Could not configure port: (5, 'Input/output error')
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<function PersistingListener._set_isolation_level.<locals>.<lambda> at 0x7f756c5ba598>)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<function PersistingListener._set_isolation_level.<locals>.<lambda> at 0x7f756c5ba598>) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'PRAGMA wal_checkpoint;', [])
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method execute of sqlite3.Connection object at 0x7f756c691570>, 'PRAGMA wal_checkpoint;', []) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<function PersistingListener._set_isolation_level.<locals>.<lambda> at 0x7f756c5ba620>)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<function PersistingListener._set_isolation_level.<locals>.<lambda> at 0x7f756c5ba620>) completed
[2023-02-06 11:44:34][DEBUG] : executing functools.partial(<built-in method close of sqlite3.Connection object at 0x7f756c691570>)
[2023-02-06 11:44:34][DEBUG] : operation functools.partial(<built-in method close of sqlite3.Connection object at 0x7f756c691570>) completed
[2023-02-06 11:44:34][ERROR] : [start_zigbee] Fatal error : Could not configure port: (5, 'Input/output error')
[2023-02-06 11:44:34][INFO] : Traceback (most recent call last):
File "/usr/local/lib/python3.7/dist-packages/serial/serialposix.py", line 398, in _reconfigure_port
orig_attr = termios.tcgetattr(self.fd)
termios.error: (5, 'Input/output error')
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/var/www/html/plugins/zigbee/resources/zigbeed/zigbeed.py", line 102, in start_zigbee
start_radio=True,
File "/usr/local/lib/python3.7/dist-packages/zigpy/application.py", line 138, in new
await app.startup(auto_form=auto_form)
File "/usr/local/lib/python3.7/dist-packages/zigpy/application.py", line 118, in startup
await self.connect()
File "/usr/local/lib/python3.7/dist-packages/zigpy_deconz/zigbee/application.py", line 91, in connect
await api.connect()
File "/usr/local/lib/python3.7/dist-packages/zigpy_deconz/api.py", line 270, in connect
self._uart = await zigpy_deconz.uart.connect(self._config, self)
File "/usr/local/lib/python3.7/dist-packages/zigpy_deconz/uart.py", line 142, in connect
xonxoff=False,
File "/usr/local/lib/python3.7/dist-packages/serial_asyncio/__init__.py", line 448, in create_serial_connection
serial_instance = serial.serial_for_url(*args, **kwargs)
File "/usr/local/lib/python3.7/dist-packages/serial/__init__.py", line 90, in serial_for_url
instance.open()
File "/usr/local/lib/python3.7/dist-packages/serial/serialposix.py", line 332, in open
self._reconfigure_port(force_update=True)
File "/usr/local/lib/python3.7/dist-packages/serial/serialposix.py", line 401, in _reconfigure_port
raise SerialException("Could not configure port: {}".format(msg))
serial.serialutil.SerialException: Could not configure port: (5, 'Input/output error')
[2023-02-06 11:44:34][INFO] : Shutdown
[2023-02-06 11:44:34][INFO] : Removing PID file /tmp/jeedom/zigbee/deamon_1.pid
[2023-02-06 11:44:34][INFO] : Exit 0
[2023-02-06 11:50:06][INFO] : Start zigbeed
[2023-02-06 11:50:06][INFO] : Log level : debug
[2023-02-06 11:50:06][INFO] : PID file : /tmp/jeedom/zigbee/deamon_1.pid
[2023-02-06 11:50:06][INFO] : Device : auto
[2023-02-06 11:50:06][INFO] : Apikey :
[2023-02-06 11:50:06][INFO] : Callback : http://127.0.0.1:80/plugins/zigbee/core/php/jeeZigbee.php
[2023-02-06 11:50:06][INFO] : Cycle : 0.3
[2023-02-06 11:50:06][INFO] : Controller : deconz
[2023-02-06 11:50:06][INFO] : Channel : 15
[2023-02-06 11:50:06][INFO] : Data folder : /var/www/html/plugins/zigbee/data/1
[2023-02-06 11:50:06][INFO] : Device folder : /var/www/html/plugins/zigbee/data/device
[2023-02-06 11:50:06][INFO] : Folder OTA : None
[2023-02-06 11:50:06][INFO] : Zigpy advance configuration file : None
[2023-02-06 11:50:07][DEBUG] : SQLite version for <module 'sqlite3' from '/usr/lib/python3.7/sqlite3/__init__.py'>: 3.27.2
[2023-02-06 11:50:07][ERROR] : No device found
[2023-02-06 11:50:07][INFO] : Shutdown
[2023-02-06 11:50:07][DEBUG] : Using selector: EpollSelector
[2023-02-06 11:50:07][INFO] : Removing PID file /tmp/jeedom/zigbee/deamon_1.pid
[2023-02-06 11:50:07][INFO] : Exit 0
[2023-02-06 11:55:06][INFO] : Start zigbeed
[2023-02-06 11:55:06][INFO] : Log level : debug
[2023-02-06 11:55:06][INFO] : PID file : /tmp/jeedom/zigbee/deamon_1.pid
[2023-02-06 11:55:06][INFO] : Device : auto
[2023-02-06 11:55:06][INFO] : Apikey :
[2023-02-06 11:55:06][INFO] : Callback : http://127.0.0.1:80/plugins/zigbee/core/php/jeeZigbee.php
[2023-02-06 11:55:06][INFO] : Cycle : 0.3
[2023-02-06 11:55:06][INFO] : Controller : deconz
[2023-02-06 11:55:06][INFO] : Channel : 15
[2023-02-06 11:55:06][INFO] : Data folder : /var/www/html/plugins/zigbee/data/1
[2023-02-06 11:55:06][INFO] : Device folder : /var/www/html/plugins/zigbee/data/device
[2023-02-06 11:55:06][INFO] : Folder OTA : None
[2023-02-06 11:55:06][INFO] : Zigpy advance configuration file : None
[2023-02-06 11:55:06][DEBUG] : SQLite version for <module 'sqlite3' from '/usr/lib/python3.7/sqlite3/__init__.py'>: 3.27.2
[2023-02-06 12:00:12][ERROR] : No device found
[2023-02-06 12:00:12][INFO] : Shutdown
[2023-02-06 12:00:12][DEBUG] : Using selector: EpollSelector
[2023-02-06 12:00:12][INFO] : Removing PID file /tmp/jeedom/zigbee/deamon_1.pid
[2023-02-06 12:00:12][INFO] : Exit 0
[2023-02-06 12:05:35][INFO] : Start zigbeed
[2023-02-06 12:05:35][INFO] : Log level : debug
[2023-02-06 12:05:35][INFO] : PID file : /tmp/jeedom/zigbee/deamon_1.pid
[2023-02-06 12:05:35][INFO] : Device : auto
[2023-02-06 12:05:35][INFO] : Apikey :
[2023-02-06 12:05:35][INFO] : Callback : http://127.0.0.1:80/plugins/zigbee/core/php/jeeZigbee.php
[2023-02-06 12:05:35][INFO] : Cycle : 0.3
[2023-02-06 12:05:35][INFO] : Controller : deconz
[2023-02-06 12:05:35][INFO] : Channel : 15
[2023-02-06 12:05:35][INFO] : Data folder : /var/www/html/plugins/zigbee/data/1
[2023-02-06 12:05:35][INFO] : Device folder : /var/www/html/plugins/zigbee/data/device
[2023-02-06 12:05:35][INFO] : Folder OTA : None
[2023-02-06 12:05:35][INFO] : Zigpy advance configuration file : None
[2023-02-06 12:05:35][DEBUG] : SQLite version for <module 'sqlite3' from '/usr/lib/python3.7/sqlite3/__init__.py'>: 3.27.2
[2023-02-06 12:05:35][ERROR] : No device found
[2023-02-06 12:05:35][INFO] : Shutdown
[2023-02-06 12:05:35][DEBUG] : Using selector: EpollSelector
[2023-02-06 12:05:35][INFO] : Removing PID file /tmp/jeedom/zigbee/deamon_1.pid
[2023-02-06 12:05:35][INFO] : Exit 0
[2023-02-06 12:10:07][INFO] : Start zigbeed
[2023-02-06 12:10:07][INFO] : Log level : debug
[2023-02-06 12:10:07][INFO] : PID file : /tmp/jeedom/zigbee/deamon_1.pid
[2023-02-06 12:10:07][INFO] : Device : auto
[2023-02-06 12:10:07][INFO] : Apikey :
[2023-02-06 12:10:07][INFO] : Callback : http://127.0.0.1:80/plugins/zigbee/core/php/jeeZigbee.php
[2023-02-06 12:10:07][INFO] : Cycle : 0.3
[2023-02-06 12:10:07][INFO] : Controller : deconz
[2023-02-06 12:10:07][INFO] : Channel : 15
[2023-02-06 12:10:07][INFO] : Data folder : /var/www/html/plugins/zigbee/data/1
[2023-02-06 12:10:07][INFO] : Device folder : /var/www/html/plugins/zigbee/data/device
[2023-02-06 12:10:07][INFO] : Folder OTA : None
[2023-02-06 12:10:07][INFO] : Zigpy advance configuration file : None
[2023-02-06 12:10:07][DEBUG] : SQLite version for <module 'sqlite3' from '/usr/lib/python3.7/sqlite3/__init__.py'>: 3.27.2
[2023-02-06 12:10:07][ERROR] : No device found
[2023-02-06 12:10:07][INFO] : Shutdown
[2023-02-06 12:10:07][DEBUG] : Using selector: EpollSelector
[2023-02-06 12:10:07][INFO] : Removing PID file /tmp/jeedom/zigbee/deamon_1.pid
[2023-02-06 12:10:07][INFO] : Exit 0
[2023-02-06 12:15:08][INFO] : Start zigbeed
[2023-02-06 12:15:08][INFO] : Log level : debug
[2023-02-06 12:15:08][INFO] : PID file : /tmp/jeedom/zigbee/deamon_1.pid
[2023-02-06 12:15:08][INFO] : Device : auto
[2023-02-06 12:15:08][INFO] : Apikey :
[2023-02-06 12:15:08][INFO] : Callback : http://127.0.0.1:80/plugins/zigbee/core/php/jeeZigbee.php
[2023-02-06 12:15:08][INFO] : Cycle : 0.3
[2023-02-06 12:15:08][INFO] : Controller : deconz
[2023-02-06 12:15:08][INFO] : Channel : 15
[2023-02-06 12:15:08][INFO] : Data folder : /var/www/html/plugins/zigbee/data/1
[2023-02-06 12:15:08][INFO] : Device folder : /var/www/html/plugins/zigbee/data/device
[2023-02-06 12:15:08][INFO] : Folder OTA : None
[2023-02-06 12:15:08][INFO] : Zigpy advance configuration file : None
[2023-02-06 12:15:08][DEBUG] : SQLite version for <module 'sqlite3' from '/usr/lib/python3.7/sqlite3/__init__.py'>: 3.27.2
[2023-02-06 12:15:09][ERROR] : No device found
[2023-02-06 12:15:09][INFO] : Shutdown
[2023-02-06 12:15:09][DEBUG] : Using selector: EpollSelector
[2023-02-06 12:15:09][INFO] : Removing PID file /tmp/jeedom/zigbee/deamon_1.pid
[2023-02-06 12:15:09][INFO] : Exit 0
[2023-02-06 12:20:06][INFO] : Start zigbeed
[2023-02-06 12:20:06][INFO] : Log level : debug
[2023-02-06 12:20:06][INFO] : PID file : /tmp/jeedom/zigbee/deamon_1.pid
[2023-02-06 12:20:06][INFO] : Device : auto
[2023-02-06 12:20:06][INFO] : Apikey :
[2023-02-06 12:20:06][INFO] : Callback : http://127.0.0.1:80/plugins/zigbee/core/php/jeeZigbee.php
[2023-02-06 12:20:06][INFO] : Cycle : 0.3
[2023-02-06 12:20:06][INFO] : Controller : deconz
[2023-02-06 12:20:06][INFO] : Channel : 15
[2023-02-06 12:20:06][INFO] : Data folder : /var/www/html/plugins/zigbee/data/1
[2023-02-06 12:20:06][INFO] : Device folder : /var/www/html/plugins/zigbee/data/device
[2023-02-06 12:20:06][INFO] : Folder OTA : None
[2023-02-06 12:20:06][INFO] : Zigpy advance configuration file : None
[2023-02-06 12:20:07][DEBUG] : SQLite version for <module 'sqlite3' from '/usr/lib/python3.7/sqlite3/__init__.py'>: 3.27.2
'/usr/lib/python3.7/sqlite3/__init__.py'>: 3.27.2
[2023-02-06 12:30:11][ERROR] : No device found
[2023-02-06 12:30:11][INFO] : Shutdown
[2023-02-06 12:30:11][DEBUG] : Using selector: EpollSelector
[2023-02-06 12:30:11][INFO] : Removing PID file /tmp/jeedom/zigbee/deamon_1.pid
[2023-02-06 12:30:11][INFO] : Exit 0
[2023-02-06 12:35:06][INFO] : Start zigbeed
[2023-02-06 12:35:06][INFO] : Log level : debug
[2023-02-06 12:35:06][INFO] : PID file : /tmp/jeedom/zigbee/deamon_1.pid
[2023-02-06 12:35:06][INFO] : Device : auto
[2023-02-06 12:35:06][INFO] : Apikey :
[2023-02-06 12:35:06][INFO] : Callback : http://127.0.0.1:80/plugins/zigbee/core/php/jeeZigbee.php
[2023-02-06 12:35:06][INFO] : Cycle : 0.3
[2023-02-06 12:35:06][INFO] : Controller : deconz
[2023-02-06 12:35:06][INFO] : Channel : 15
[2023-02-06 12:35:06][INFO] : Data folder : /var/www/html/plugins/zigbee/data/1
[2023-02-06 12:35:06][INFO] : Device folder : /var/www/html/plugins/zigbee/data/device
[2023-02-06 12:35:06][INFO] : Folder OTA : None
[2023-02-06 12:35:06][INFO] : Zigpy advance configuration file : None
[2023-02-06 12:35:07][DEBUG] : SQLite version for <module 'sqlite3' from '/usr/lib/python3.7/sqlite3/__init__.py'>: 3.27.2
[2023-02-06 12:35:07][ERROR] : No device found
[2023-02-06 12:35:07][INFO] : Shutdown
[2023-02-06 12:35:07][DEBUG] : Using selector: EpollSelector
[2023-02-06 12:35:07][INFO] : Removing PID file /tmp/jeedom/zigbee/deamon_1.pid
[2023-02-06 12:35:07][INFO] : Exit 0
[2023-02-06 12:45:08][ERROR] : No device found
[2023-02-06 12:46:04][ERROR] : No device found