AM2320 temperature/humidity sensor bridge for Homebridge: https://github.com/nfarina/homebridge"
npm install homebridge-thermometer-am2320ASONG AM2320 temperature/humidity sensor service plugin for Homebridge
npm install -g homebridgenpm install -g homebridge-thermometer-am2320Connect the AM2320 chip to the I2C bus
accessory: "AM2320"name: descriptive namename_temperature (optional): descriptive name for the temperature sensorname_humidity (optional): descriptive name for the humidity sensorIf you get an I/O error, make sure the I2C address is correct (usually 0x5c depending on a jumper).
Example configuration:
``json``
"accessories": [
{
"accessory": "AM2320",
"name": "Sensor",
"name_temperature": "Temperature",
"name_humidity": "Humidity",
"options": {
"i2cBusNo": 1,
"i2cAddress": "0x5c"
}
}
]
This plugin creates two services: TemperatureSensor and HumiditySensor.
Apache 2.0