UNPKG
@kala4ek/homebridge-starline
Version:
latest (2.0.1)
2.0.1
2.0.0
StarLine plugin for Homebridge
github.com/kala4ek/homebridge-starline
kala4ek/homebridge-starline
@kala4ek/homebridge-starline
/
src
/
services
/
MotionSensor.js
15 lines
(12 loc)
•
252 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function
init
(
hap, name
) {
return
new
hap.
Service
.
MotionSensor
(name); }
function
update
(
state, service, obj
) { service .
getCharacteristic
(obj.
hap
.
Characteristic
.
MotionDetected
) .
updateValue
(state); }
module
.
exports
= { init, update }