# homebridge-flirfx

> Supports sensors on FlirFX devices with the HomeBridge Platform

Latest version **1.1.0** (published 2016-09-14) · ISC license · 0 weekly downloads

## Install

```sh
npm install homebridge-flirfx
pnpm add homebridge-flirfx
yarn add homebridge-flirfx
bun add homebridge-flirfx
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.0 |
| Published | 2016-09-14 |
| First published | 2016-09-14 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=0.12.0 |
| Dependencies | 1 |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Alex Wight |
| Maintainers | alexwight |
| Keywords | homebridge-plugin |

## Links

- npm: https://www.npmjs.com/package/homebridge-flirfx
- Repository: https://github.com/alexwight/homebridge-flirfx
- Homepage: https://github.com/alexwight/homebridge-flirfx#readme
- Issues: https://github.com/alexwight/homebridge-flirfx/issues
- npm.io page: https://npm.io/package/homebridge-flirfx

## Dependencies (1)

- [request](https://npm.io/package/request.md) ^2.74.0

## Alternatives

- [@sindresorhus/slugify](https://npm.io/package/@sindresorhus/slugify.md) — 3.7M weekly downloads
- [solid-js](https://npm.io/package/solid-js.md) — 2.7M weekly downloads
- [expo-glass-effect](https://npm.io/package/expo-glass-effect.md) — 2.5M weekly downloads
- [nanoassert](https://npm.io/package/nanoassert.md) — 780.8K weekly downloads
- [@ffmpeg/ffmpeg](https://npm.io/package/@ffmpeg/ffmpeg.md) — 529.5K weekly downloads

## Recent versions

- 1.1.0 (latest) — 2016-09-14
- 1.0.0 — 2016-09-14

## README

# homebridge-flirfx

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.

# Installation

1. Install homebridge using: npm install -g homebridge
2. Install this plugin using: npm install -g homebridge-flirfx
3. Update your configuration file. See sample-config.json in this repository for a sample. 

# Configuration

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
        }
    ]
```

---
_Source: https://npm.io/package/homebridge-flirfx · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
