Add mop module (#1456)

Adds the following new features: a setting to control water level and a sensor if the mop is attached:
```
Mop water level (mop_waterlevel): *Disable* Low Medium High
Mop attached (mop_attached): True
```
This commit is contained in:
Teemu R.
2025-01-15 19:12:33 +01:00
committed by GitHub
parent bc97c0794a
commit 17356c10f1
4 changed files with 151 additions and 0 deletions

View File

@@ -27,6 +27,7 @@ from .lightpreset import LightPreset
from .lightstripeffect import LightStripEffect
from .lighttransition import LightTransition
from .matter import Matter
from .mop import Mop
from .motionsensor import MotionSensor
from .overheatprotection import OverheatProtection
from .reportmode import ReportMode
@@ -76,4 +77,5 @@ __all__ = [
"HomeKit",
"Matter",
"Dustbin",
"Mop",
]