File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
applications/matter_weather_station/src Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -99,12 +99,17 @@ class IdentifyDelegateImplWeatherStation : public chip::app::Clusters::IdentifyD
9999 });
100100 }
101101
102+ /* *
103+ * Trigger Effect command is not supported by default by this device
104+ * It can be enabled by returning true in the IsTriggerEffectEnabled function
105+ * When enabled handle the command in the function below
106+ */
102107 void OnTriggerEffect (chip::app::Clusters::IdentifyCluster &cluster) override
103108 {
104109 Nrf::PostTask ([] { BuzzerToggleState (); });
105110 }
106111
107- bool IsTriggerEffectEnabled () const override { return true ; }
112+ bool IsTriggerEffectEnabled () const override { return false ; }
108113};
109114
110115IdentifyDelegateImplWeatherStation sIdentifyDelegateImplWeatherStation ;
You can’t perform that action at this time.
0 commit comments