Set PARALLEL_UPDATES to 1 in onewire (#135006)

This commit is contained in:
epenet 2025-01-07 17:19:48 +01:00 committed by GitHub
parent 5888b83f22
commit d155d93462
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ from .const import DEVICE_KEYS_0_3, DEVICE_KEYS_0_7, DEVICE_KEYS_A_B, READ_MODE_
from .entity import OneWireEntity, OneWireEntityDescription from .entity import OneWireEntity, OneWireEntityDescription
from .onewirehub import OneWireHub from .onewirehub import OneWireHub
PARALLEL_UPDATES = 0 PARALLEL_UPDATES = 1
SCAN_INTERVAL = timedelta(seconds=30) SCAN_INTERVAL = timedelta(seconds=30)

View File

@ -42,7 +42,7 @@ from .const import (
from .entity import OneWireEntity, OneWireEntityDescription from .entity import OneWireEntity, OneWireEntityDescription
from .onewirehub import OneWireHub from .onewirehub import OneWireHub
PARALLEL_UPDATES = 0 PARALLEL_UPDATES = 1
SCAN_INTERVAL = timedelta(seconds=30) SCAN_INTERVAL = timedelta(seconds=30)

View File

@ -17,7 +17,7 @@ from .const import DEVICE_KEYS_0_3, DEVICE_KEYS_0_7, DEVICE_KEYS_A_B, READ_MODE_
from .entity import OneWireEntity, OneWireEntityDescription from .entity import OneWireEntity, OneWireEntityDescription
from .onewirehub import OneWireHub from .onewirehub import OneWireHub
PARALLEL_UPDATES = 0 PARALLEL_UPDATES = 1
SCAN_INTERVAL = timedelta(seconds=30) SCAN_INTERVAL = timedelta(seconds=30)