-
-
Notifications
You must be signed in to change notification settings - Fork 574
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add full support for Xiaomi Purifier Elite (zhimi.airp.meb1)
- Implemented unique features for Xiaomi Purifier Elite: - Added specific mappings for zhimi.airp.meb1. - Updated status output to include PM10 and other key metrics. - Enhanced logging for device debugging. This resolves issue #1902 on GitHub.
- Loading branch information
Showing
3 changed files
with
206 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,71 @@ | ||
# Byte-compiled files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Distribution / packaging | ||
*.egg | ||
*.egg-info/ | ||
dist/ | ||
build/ | ||
eggs/ | ||
sdist/ | ||
wheels/ | ||
|
||
__pycache__ | ||
.idea/ | ||
.cache/ | ||
.mypy_cache/ | ||
.tox/ | ||
.venv/ | ||
# Installer logs | ||
pip-log.txt | ||
pip-delete-this-directory.txt | ||
|
||
.coverage | ||
# Virtual environments | ||
.env/ | ||
.venv/ | ||
env/ | ||
venv/ | ||
ENV/ | ||
env.bak/ | ||
venv.bak/ | ||
|
||
# generated apidocs | ||
docs/_build/ | ||
docs/api/ | ||
# Pytest | ||
.cache/ | ||
.tox/ | ||
|
||
# IDE configurations | ||
.idea/ | ||
.vscode/ | ||
.vscode/settings.json | ||
|
||
# pycharm shenanigans | ||
*.orig | ||
*_BACKUP_* | ||
*_BASE_* | ||
*_LOCAL_* | ||
*_REMOTE_* | ||
|
||
# Coverage reports | ||
.coverage | ||
*.cover | ||
*.coverage.* | ||
|
||
# Testing files | ||
test-results/ | ||
.nox/ | ||
|
||
# MyPy | ||
.mypy_cache/ | ||
|
||
# Sphinx documentation | ||
docs/_build/ | ||
docs/api/ | ||
|
||
# Local files | ||
*.log | ||
*.swp | ||
.DS_Store | ||
*.tmp | ||
*.temp | ||
*.bak | ||
|
||
# Git metadata | ||
*.rej | ||
*.un~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters