8000 Shelly: Add support for Shelly Pro 3EM 400A model by t-mon · Pull Request #769 · nymea/nymea-plugins · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Shelly: Add support for Shelly Pro 3EM 400A model #769

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
nymea-plugins (1.11.0+202505281205~6693e6c5~bookworm) UNRELEASED; urgency=medium

* New Package build

-- <timon@nymea-plugins-bookworm-amd64-armhf> Wed, 28 May 2025 12:12:22 +0000

nymea-plugins (1.11.0) jammy; urgency=medium

[ Simon Stürz ]
Expand Down
2 changes: 1 addition & 1 deletion shelly/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The currently supported devices are:
* Shelly Button 1
* Shelly EM
* Shelly 3EM
* Shelly Pro 3EM
* Shelly Pro 3EM (including 400A model)
* Shelly H+T
* Shelly i3
* Shelly Motion
Expand Down
2 changes: 1 addition & 1 deletion shelly/integrationpluginshelly.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ void IntegrationPluginShelly::discoverThings(ThingDiscoveryInfo *info)
} else if (info->thingClassId() == shellyEm3ThingClassId) {
namePattern = QRegularExpression("^shellyem3-[0-9A-Z]+$");
} else if (info->thingClassId() == shellyPro3EMThingClassId) {
namePattern = QRegularExpression("^ShellyPro3EM-[0-9A-Z]+$", QRegularExpression::CaseInsensitiveOption);
namePattern = QRegularExpression("^ShellyPro3EM(400)?-[0-9A-Z]+$", QRegularExpression::CaseInsensitiveOption);
} else if (info->thingClassId() == shellyHTThingClassId) {
namePattern = QRegularExpression("shellyht(g3)?-[0-9A-Z]+$", QRegularExpression::CaseInsensitiveOption);
} else if (info->thingClassId() == shellyI3ThingClassId) {
Expand Down
0