Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
krlaframboise committed Dec 2, 2017
1 parent ddbd77e commit b7f3aff
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions devicetypes/krlaframboise/dome-siren.src/dome-siren.groovy
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Dome Siren v1.2
* Dome Siren v1.2.1
* (Model: DMS01)
*
* Author:
Expand All @@ -10,6 +10,9 @@
*
* Changelog:
*
* 1.2.1 (12/02/2017)
* - Fixed bug with siren play until depleted setting.
*
* 1.2 (10/12/2017)
* - SmartThings broke the ability to set a state value to null which prevented the resetting of sirenStartTime.
*
Expand Down Expand Up @@ -921,7 +924,7 @@ private getChimeLEDSetting() {
return settings?.chimeLED ?: findDefaultOptionName(ledOptions)
}
private getChimeModeSetting() {
return 1 // Chime Mode should always be disabled.
return 1 // Chime Mode should always be disabled. (2: secondary)
}
private getCheckinIntervalSettingMinutes() {
return convertOptionSettingToInt(checkinIntervalOptions, checkinIntervalSetting) ?: 720
Expand Down Expand Up @@ -1034,7 +1037,7 @@ private getSirenLengthOptions() {
[name: "30 Seconds", value: 1],
[name: formatDefaultOptionName("1 Minute"), value: 2],
[name: "5 Minutes", value: 3],
[name: "${noLengthMsg}", value: 4] // config value is 255
[name: "${noLengthMsg}", value: 255] // old value 4???
]
}

Expand Down

0 comments on commit b7f3aff

Please sign in to comment.