Initial implementation for modularized smartdevice (#757)

The initial steps to modularize the smartdevice. Modules are initialized based on the component negotiation, and each module can indicate which features it supports and which queries should be run during the update cycle.
This commit is contained in:
Teemu R
2024-02-19 18:01:31 +01:00
committed by GitHub
parent e86dcb6bf5
commit 11719991c0
21 changed files with 408 additions and 156 deletions

View File

@@ -5,7 +5,7 @@ except ImportError:
from pydantic import BaseModel
from ...feature import Feature, FeatureType
from .module import IotModule
from ..iotmodule import IotModule
class CloudInfo(BaseModel):