Supports sensors on FlirFX devices with the HomeBridge Platform
Motion detection is acheived by checking the camera to see if it is currently recording because of motion detection (i.e. not a manual recording)
This module does not read or access the video stream as HomeKit doesn't have such a feature.
Configuration sample:
"accessories": [
{
"accessory" : "FlirFX",
"ip" : "192.168.0.29",
"password" : "cameraPassword",
"name" : "Humidity",
"service" : "HumiditySensor"
},
{
"accessory" : "FlirFX",
"ip" : "192.168.0.29",
"password" : "cameraPassword",
"name" : "Temperature",
"service" : "TemperatureSensor"
},
{
"accessory" : "FlirFX",
"ip" : "192.168.0.29",
"password" : "cameraPassword",
"name" : "Motion",
"service" : "MotionSensor",
"refreshInterval" : 10 // check for motion every 10 seconds
}
]