Adjusting files in ZigbeeTest; preparing things for 4th benchmark, i.e. generating...
[iot2.git] / localconfig / iotpolicy / SmartthingsSensor / smartthingssensorcallback.pol
1 public interface SmartthingsSensorCallback {
2
3         public void newReadingAvailable(int _sensorId, int _value, boolean _activeValue);
4
5         capability Callback {
6                 description = "Callback method";
7                 method = "newReadingAvailable(int _sensorId, int _value, boolean _activeValue)";
8         }
9 }
10
11