a fhem platform plugin for homebridge
uses longpoll and an internal cache to avoid roundtrips to fhem.a debug browser is available at port 8282 (or 8283).
add one (or more) FHEM platforms to config.json and set the filter(s) to a fhem devspec thatincludes the devices that should be bridged to homekit.
for devices that are not correctly identified use the genericDeviceType attribute to configure the device type.supported values are: security,ignore,switch,outlet,light,blind,thermometer,thermostat,contact,garage,window,lockthis is probably mostly used for differentiating between switches and lights.
for devices that don't use the autodetected readings and commands or for devices that mix readings from differentdevices use the homebridgeMapping attribute. it is parsed from left to right and works as follows:
attr <thermostat> genericDeviceType thermostat
attr <thermostat> homebridgeMapping TargetTemperature=target::target,minValue=18,maxValue=25,minStep=0.5 CurrentTemperature=myTemp:temperature
this would define a thermostat device with a command target to set the desired temperature, a reading target that indicates the desired target temperature, the desired min, max and step values and a current temeprature comming from the temperature reading of the device myTemp.
the names for the stadard service and characteristic types can be found here: .../hap-nodejs/lib/gen/HomeKitTypes.js
e.g.:
PositionState=motor,values=/^up/:INCREASING;/^down/:DECREASING;/.*/:STOPPED On=state,valueOn=/on|dim/,valueOff=off
the order of the transformations is as follows: eventMap, part, threshold, values, valueOn/valueOff, factor, max, maxValue/minValue/minStep, invert
instead of using the transformation chain reading2homekit can be set to the name of a js function that is imported from a filenamed by the jsFunctions config option. relative paths are relative to the same path the config file is located in.the function it will be called with mapping and reading value as parameters and has to return the value to be used with homekit.
for custom characterisitcs the additional parameters name, format and unit have to be set. e.g.:
00000027-0000-1000-8000-0026BB765291=Volume::Volume,name=Volume,format=UINT8,unit=PERCENTAGE,minValue=0,maxValue=0,minStep=1
adding a history characteristic will try to use fakegato-history to create Eve compatible history entries for ContactSensor and TemperatureSensor services:
history:size=1024
spaces in commands have to be replaced by +
e.g.:
TargetHeatingCoolingState=...,cmds=OFF:desired-temp+off;HEAT:controlMode+day;COOL:controlMode+night;AUTO:controlMode+auto
the order of the transformations is as follows: invert, factor, max/maxValueprecedence for mapping of homekit value to commands is in increasing order: cmd, cmdOn/cmdOff, cmds
instead of using the transformation chain homekit2reading can be set to the name of a js function that is imported from a filenamed by the jsFunctions config option. relative paths are relative to the same path the config file is located in.the function it will be called with mapping and the homekit value as parameters and has to return the value to be used with the fhem set command.
a dummy with a setList of exactly two entries will be mapped to a On characteristic where the first entry will be mapped to on and the second to off.
examples:
attr <temp> genericDeviceType thermometer
attr <temp> homebridgeMapping CurrentTemperature=temperature1,minValue=-30
wenn das reading temperature heisst statt temperature1 muss es nicht angegeben werden.
attr <thermostat> genericDeviceType thermostat
attr <thermostat> homebridgeMapping TargetTemperature=target::target,minValue=18,maxValue=25,minStep=0.5
CurrentTemperature=myTemp:temperature
attr <tempHum> genericDeviceType thermometer
attr <tempHum> homebridgeMapping [CurrentTemperature=temperature1] CurrentRelativeHumidity=<device2>:humidity
wenn das reading temperature heisst statt temperature1 kann CurrentTemperature=temperature1 entfallen
attr <dualTemp> genericDeviceType thermometer
attr <dualTemp> homebridgeMapping CurrentTemperature=temperature1,minValue=-30,subtype=innen
CurrentTemperature=temperature2,minValue=-30,subtype=aussen
attr <hub> genericDeviceType switch
attr <hub> homebridgeMapping clear
On=activity,subtype=TV,valueOn=TV,cmdOn=activity+TV,cmdOff=off
On=activity,subtype=DVD,valueOn=/DVD/,cmdOn=activity+DVD,cmdOff=off
On=activity,subtype=Off,valueOn=PowerOff,valueOff=PowerOff,cmd=off
attr <name> genericDeviceType switch
attr <name> homebridgeMapping On=state,cmdOn=on,cmdOff=off
BatteryService#BatteryLevel=battery
BatteryService#StatusLowBattery=battery,threshold=20,values=0:BATTERY_LEVEL_LOW;;1:BATTERY_LEVEL_NORMAL
BatteryService#ChargingState=charging
instead of the format described above homebridgeMapping can also contain the same data encoded as jsonthis has to be used if any of the separators above are used in an command or value. at the moment thejson version replaces all build in defaults for a device. e.g.:
{ "PositionState": { "reading": "motor", "values": [...] }, "On": { "reading": "state", "valueOn": "/on|dim/", "valueOff": "off" } }
Homebridge 是一个轻量级 NodeJS 服务器,它模拟 iOS HomeKit API,提供从 HomeKit 到“智能家居”设备制造商提供的各种第三方 API 的基本桥接。通过 Homebridge 的桥接,可以让 Siri 控制完全不支持 HomeKit 的设备。 此外 Homebridge 支持插件。
homebridge-vsx homebridge-vsx is a plugin made for homebridge,which allows switching on and off your Pioneer AV receiver. All AV receivers (VSX and SC),which work with the iControl AV5 App are support
homebridge-sesame Control and monitor your Sesame smart lock with HomeKit integration. Prerequisites Installation of Homebridge iOS 11 or later Sesame lock with enabled cloud integration Sesame Wifi A
homebridge-panasonictv A homebridge plugin for turning on and off your Panasonic Viera TV. The plugin also has experimental support for changing the volume and channel. These characteristics are not r
Quick Start | Contribute A Wake on Lan plugin for Homebridge Turn your PCs, laptops, servers and more on and off through Siri Quick Start To install the plugin, head over to the machine with Homebridg
Docker Homebridge This Alpine/Ubuntu Linux based Docker image allows you to run Nfarina's Homebridge on your home network which emulates the iOS HomeKit API. This is a multi-arch image and will also r
This Plugin is no longer being maintained. The ST platform removed all of the greatness that made it fun to develop for and I will not rewrite my years of code to adapt. I have moved to Hubitat and al
Homebridge myQ myQ garage door and other myQ-enabled device support for Homebridge. homebridge-myq is a Homebridge plugin that makes myQ-enabled devices available to Apple's HomeKit smart home platfor