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

Recessed Door Sensor 7 device type update #46572

Merged
merged 2 commits into from
Oct 6, 2020
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,11 @@ def updated() {
}

def configure() {
// currently supported devices do not require initial configuration
//Recessed Door Sensor 7 - Enable Binary Sensor Report for S2 Authenticated
if (state.MSR == "0371-0102-00BB" || state.MSR == "0371-0002-00BB") {
Aeotec-ccheng marked this conversation as resolved.
Show resolved Hide resolved
result << response(command(zwave.configurationV1.configurationSet(parameterNumber: 1, size: 1, scaledConfigurationValue: 1)))
result
}
}

def sensorValueEvent(value) {
Expand Down