diff --git a/homeassistant/components/homee/button.py b/homeassistant/components/homee/button.py
index af6d769c1dc379d58626af0a417f26b21a91fc23..33a8b5f23c83dcd3bff07107a401bfe32c9b163c 100644
--- a/homeassistant/components/homee/button.py
+++ b/homeassistant/components/homee/button.py
@@ -15,6 +15,8 @@ from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
 from . import HomeeConfigEntry
 from .entity import HomeeEntity
 
+PARALLEL_UPDATES = 0
+
 BUTTON_DESCRIPTIONS: dict[AttributeType, ButtonEntityDescription] = {
     AttributeType.AUTOMATIC_MODE_IMPULSE: ButtonEntityDescription(key="automatic_mode"),
     AttributeType.BRIEFLY_OPEN_IMPULSE: ButtonEntityDescription(key="briefly_open"),
diff --git a/homeassistant/components/homee/cover.py b/homeassistant/components/homee/cover.py
index 6e7e4fd5c55969254f5e17401d1360e6391305e0..79a9b00ffbaf57b82964b3cee2eb7bf9c0e24257 100644
--- a/homeassistant/components/homee/cover.py
+++ b/homeassistant/components/homee/cover.py
@@ -21,6 +21,8 @@ from .entity import HomeeNodeEntity
 
 _LOGGER = logging.getLogger(__name__)
 
+PARALLEL_UPDATES = 0
+
 OPEN_CLOSE_ATTRIBUTES = [
     AttributeType.OPEN_CLOSE,
     AttributeType.SLAT_ROTATION_IMPULSE,
diff --git a/homeassistant/components/homee/light.py b/homeassistant/components/homee/light.py
index b9c4460075ad0551fb0d216ef2a6d3b615824ecd..9c66764760ee6d5a989b84ec0b95e042e271aa7d 100644
--- a/homeassistant/components/homee/light.py
+++ b/homeassistant/components/homee/light.py
@@ -32,6 +32,8 @@ LIGHT_ATTRIBUTES = [
     AttributeType.DIMMING_LEVEL,
 ]
 
+PARALLEL_UPDATES = 0
+
 
 def is_light_node(node: HomeeNode) -> bool:
     """Determine if a node is controllable as a homee light based on its profile and attributes."""
diff --git a/homeassistant/components/homee/number.py b/homeassistant/components/homee/number.py
index 3f1f08a6618bdd9cac32c17ae49b7cb44e8c1ecf..5f76b826fcf63e232ed195ab5679bfeeea1de893 100644
--- a/homeassistant/components/homee/number.py
+++ b/homeassistant/components/homee/number.py
@@ -16,6 +16,8 @@ from . import HomeeConfigEntry
 from .const import HOMEE_UNIT_TO_HA_UNIT
 from .entity import HomeeEntity
 
+PARALLEL_UPDATES = 0
+
 NUMBER_DESCRIPTIONS = {
     AttributeType.DOWN_POSITION: NumberEntityDescription(
         key="down_position",
diff --git a/homeassistant/components/homee/quality_scale.yaml b/homeassistant/components/homee/quality_scale.yaml
index ff99d1770180a86b3cdc7e0067a6ec653eba6568..906218cf8237c3a61495c92cbf2163b0f83ef39f 100644
--- a/homeassistant/components/homee/quality_scale.yaml
+++ b/homeassistant/components/homee/quality_scale.yaml
@@ -35,7 +35,7 @@ rules:
   entity-unavailable: done
   integration-owner: done
   log-when-unavailable: done
-  parallel-updates: todo
+  parallel-updates: done
   reauthentication-flow: todo
   test-coverage: todo
 
diff --git a/homeassistant/components/homee/sensor.py b/homeassistant/components/homee/sensor.py
index 410f87f2168ae62241a5aacc6620ce97f2180986..e65b73b4a67d64633cb1e15a3ed52188bca6fe15 100644
--- a/homeassistant/components/homee/sensor.py
+++ b/homeassistant/components/homee/sensor.py
@@ -27,6 +27,8 @@ from .const import (
 from .entity import HomeeEntity, HomeeNodeEntity
 from .helpers import get_name_for_enum
 
+PARALLEL_UPDATES = 0
+
 
 def get_open_close_value(attribute: HomeeAttribute) -> str | None:
     """Return the open/close value."""
diff --git a/homeassistant/components/homee/switch.py b/homeassistant/components/homee/switch.py
index 86c7acdbf11cc756c66ed7e3ccf31e91450579ce..041b96963f1e7e12173bef95c0d9c67d62792188 100644
--- a/homeassistant/components/homee/switch.py
+++ b/homeassistant/components/homee/switch.py
@@ -20,6 +20,8 @@ from . import HomeeConfigEntry
 from .const import CLIMATE_PROFILES, LIGHT_PROFILES
 from .entity import HomeeEntity
 
+PARALLEL_UPDATES = 0
+
 
 def get_device_class(
     attribute: HomeeAttribute, config_entry: HomeeConfigEntry
diff --git a/homeassistant/components/homee/valve.py b/homeassistant/components/homee/valve.py
index 9a4ff446a10eb03f3e9af194073a6014cdb8870d..995716d7ef8974316870d8e262428556d1bfb602 100644
--- a/homeassistant/components/homee/valve.py
+++ b/homeassistant/components/homee/valve.py
@@ -15,6 +15,8 @@ from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
 from . import HomeeConfigEntry
 from .entity import HomeeEntity
 
+PARALLEL_UPDATES = 0
+
 VALVE_DESCRIPTIONS = {
     AttributeType.CURRENT_VALVE_POSITION: ValveEntityDescription(
         key="valve_position",