Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add initial support for Senssun scale #1380

Merged
merged 2 commits into from
Jul 31, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix precommit errors
  • Loading branch information
周腾 committed Jul 31, 2024
commit 532717bc11456ca5c0535413724840c2ac9887bb
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ This custom component for [Home Assistant](https://www.home-assistant.io) passiv
- Ruuvitag
- Sensirion
- SensorPush
- Senssun (Scale)
- SmartDry
- Switchbot
- Teltonika
Expand Down
2 changes: 1 addition & 1 deletion custom_components/ble_monitor/ble_parser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
from .ruuvitag import parse_ruuvitag
from .sensirion import parse_sensirion
from .sensorpush import parse_sensorpush
from .senssun import parse_senssun
from .smartdry import parse_smartdry
from .switchbot import parse_switchbot
from .teltonika import parse_teltonika
Expand All @@ -46,7 +47,6 @@
from .tilt import parse_tilt
from .xiaogui import parse_xiaogui
from .xiaomi import parse_xiaomi
from .senssun import parse_senssun

_LOGGER = logging.getLogger(__name__)

Expand Down
Loading