Beispiel #1
0
 public void processRx(string type, string action, string parameter, string space)
 {
     if (type == "pst")
     {
         if (action == "act")
         {
             _SceneFb = true;
             SceneFeedback.FireUpdate();
             _Parent.ActivePreset = this.sceneName;
             _Parent.ActivePresetFeedback.FireUpdate();
             _Parent.RaiseEvent_ActivePresetUpdate(this);
         }
         else if (action == "dact")
         {
             _SceneFb = false;
             SceneFeedback.FireUpdate();
         }
         else if (action == "alt")
         {
             Debug.Console(2, Debug.ErrorLogLevel.Notice, "{0}:: Preset {0} returned status as altered. Check Lighting program", _Parent.ToString(), this.sceneName);
         }
     }
 }