-
Notifications
You must be signed in to change notification settings - Fork 529
WWST add support for Zooz ZEN05 #2843
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
Merged
cbaumler
merged 3 commits into
SmartThingsCommunity:main
from
jtp10181:zwave-switch_zen05
Mar 31, 2026
+113
−0
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
90 changes: 90 additions & 0 deletions
90
drivers/SmartThings/zwave-switch/profiles/zooz-zen05-plug.yml
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,90 @@ | ||
| name: zooz-zen05-plug | ||
| components: | ||
| - id: main | ||
| capabilities: | ||
| - id: switch | ||
| version: 1 | ||
| - id: powerMeter | ||
| version: 1 | ||
| - id: energyMeter | ||
| version: 1 | ||
| - id: voltageMeasurement | ||
| version: 1 | ||
| - id: refresh | ||
| version: 1 | ||
| categories: | ||
| - name: SmartPlug | ||
| preferences: | ||
| - name: "driverInfo" | ||
| title: "Driver Info" | ||
| description: "This driver may have limited features, check the online Zooz documentation for information about custom drivers." | ||
| preferenceType: string | ||
| definition: | ||
| stringType: paragraph | ||
| #param 1 | ||
| - name: "ledMode" | ||
| title: "LED Indicator Behavior" | ||
| description: "Decide how the LED indicator behaves depending on the on/off status of the plug." | ||
| required: false | ||
| preferenceType: enumeration | ||
| definition: | ||
| options: | ||
| 0: "On when on, off when off *" | ||
| 1: "On when off, off when on" | ||
| 2: "Always off" | ||
| default: 0 | ||
| #param 7 | ||
| - name: "ledBrightness" | ||
| title: "LED Brightness" | ||
| description: "Choose the LED indicator brightness level." | ||
| required: false | ||
| preferenceType: enumeration | ||
| definition: | ||
| options: | ||
| 0: "High" | ||
| 1: "Medium" | ||
| 2: "Low *" | ||
| default: 2 | ||
| #param 2 | ||
| - name: "autoTurnOff" | ||
| title: "Auto-off Timer" | ||
| description: "Default: 0=disabled; Auto-off timer will automatically turn the Smart Plug off after x minutes once it has been turned on." | ||
| required: false | ||
| preferenceType: integer | ||
| definition: | ||
| minimum: 0 | ||
| maximum: 65535 | ||
| default: 0 | ||
| #param 4 | ||
| - name: "autoTurnOn" | ||
| title: "Auto-on Timer" | ||
| description: "Default: 0=disabled; Auto-on timer will automatically turn the Smart Plug on after x minutes once it has been turned off." | ||
| required: false | ||
| preferenceType: integer | ||
| definition: | ||
| minimum: 0 | ||
| maximum: 65535 | ||
| default: 0 | ||
| #param 6 | ||
| - name: "powerRecovery" | ||
| title: "On/Off Status After Power Failure" | ||
| description: "Choose the recovery state for your Smart Plug if power outage occurs." | ||
| required: false | ||
| preferenceType: enumeration | ||
| definition: | ||
| options: | ||
| 2: "Restores Prior Status *" | ||
| 0: "Always Off once restored" | ||
| 1: "Always On once restored" | ||
| default: 2 | ||
| #param 8 | ||
| - name: "manualControl" | ||
| title: "Manual Control" | ||
| description: "Disable or enable manual control (turning the Smart Plug on and off using the physical button)." | ||
| required: false | ||
| preferenceType: enumeration | ||
| definition: | ||
| options: | ||
| 0: "Disabled" | ||
| 1: "Enabled *" | ||
| default: 1 | ||
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: newline needed