Esempio n. 1
0
 public static bool IsCamera(this KakuSensor s)
 {
     return(s.Type == KakuSensorType.Camera);
 }
Esempio n. 2
0
 public static bool IsSmoke(this KakuSensor s)
 {
     return(s.Type == KakuSensorType.Smoke);
 }
Esempio n. 3
0
 public static bool IsMotion(this KakuSensor s)
 {
     return(s.Type == KakuSensorType.Motion);
 }
Esempio n. 4
0
 public static bool IsDoorbell(this KakuSensor s)
 {
     return(s.Type == KakuSensorType.Doorbell);
 }
Esempio n. 5
0
 public static bool IsContact(this KakuSensor s)
 {
     return(s.Type == KakuSensorType.Contact || s.Type == KakuSensorType.Contact868);
 }