X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=SpeechSynthesis%2FSpeechSynthesis.groovy;fp=SpeechSynthesis%2FSpeechSynthesis.groovy;h=cd57d0ca8c086f51a3799830cb2590c3a2628ac4;hb=2d26e7af07daad1394408bdcf76150b5aacf3a8a;hp=da60b36591ad58150ee1b6d3b915838ae2cc2003;hpb=83071d3bcfc33f015ece13868342644498a9dda3;p=smartthings-infrastructure.git diff --git a/SpeechSynthesis/SpeechSynthesis.groovy b/SpeechSynthesis/SpeechSynthesis.groovy index da60b36..cd57d0c 100644 --- a/SpeechSynthesis/SpeechSynthesis.groovy +++ b/SpeechSynthesis/SpeechSynthesis.groovy @@ -2,21 +2,16 @@ package SpeechSynthesis import SmartThing.SmartThing -//Importing mutable integer class -import MutableInteger.MutableInteger - public class SpeechSynthesis extends SmartThing { // id, label, and display name of the device - StringBuilder id = new StringBuilder() - StringBuilder label = new StringBuilder() - StringBuilder displayName = new StringBuilder() - // Features with numberical values - MutableInteger currentLevel = new MutableInteger() + String id + String label + String displayName // Maps from features to values - HashMap deviceIntValuesMap = new HashMap() + HashMap deviceIntValuesMap = new HashMap() - SpeechSynthesis(Closure sendEvent, StringBuilder id, StringBuilder label, StringBuilder displayName, MutableInteger currentLevel) { - deviceIntValuesMap = deviceIntValueSmartThing + SpeechSynthesis(Closure sendEvent, String id, String label, String displayName, Integer currentLevel) { + deviceIntValueSmartThing = deviceIntValuesMap idSmartThing = id labelSmartThing = label displayNameSmartThing = displayName @@ -26,27 +21,16 @@ public class SpeechSynthesis extends SmartThing { this.id = id this.label = label this.displayName = displayName - this.currentLevel = currentLevel deviceIntValuesMap.put("level", currentLevel) } // Methods to set values def setLevel(int newValue) { - if (!currentLevel.getValue().equals(newValue)) { - String tmpID = id.toString() - currentLevel.setValue(newValue) - println("The level of speech synthesis with id:$tmpID is changed to $currentLevel") - } + action(newValue, "level") } def speak(String message) { - String tmpID = id.toString() - println("Speech synthesis with id:$tmpID, SPEAKING:\"$message\"!") - } - - // Methods to return values - def getCurrentLevel() { - return currentLevel.getValue() + println("Speech synthesis with id:$id, SPEAKING:\"$message\"!") } }