0.11.0 • Published 3 years ago

homebridge-mqtt-blinds-simulation v0.11.0

Weekly downloads
3
License
MIT
Repository
github
Last release
3 years ago

Homebridge MQTT Blinds with simulation

Homebridge plugin to control blinds via MQTT with simulation mode.

Installation

  1. install homebridge npm install -g homebridge
  2. install this plugin npm install -g homebridge-mqtt-blinds-simulation
  3. update your ~/.homebridge/config.json file (use sample-config.json as a reference)

Configuration

Sample accessory:

"accessories": [
  {
    "accessory": "Blinds",
    "name": "Kitchen",
    "topicUp": {
        "url": "",
        "message": ""
    },
    "topicDown": {
    "url": "",
    "message": ""
    },
    "topicStop": {
    "url": "",
    "message": ""
    },
    "durationUp": 27000,
    "durationDown": 25000,
    "durationOffset": 1000,
    "mqttUrl": "mqtt://localhost:1883",
    "mqttUser": "",
    "mqttPass": ""
   }
]

Fields:

  • accessory must always be Blinds
  • name room with blinds, e.g. Garage
  • topicUp topic object for send up message
  • topicDown topic object for send down message
  • topicStop topic object for send stop message
  • durationUp milliseconds to open blinds completely
  • durationDown milliseconds to close blinds completely
  • durationOffset optional, default: 0 milliseconds added to durationUp and durationDown to make sure that blinds are completely open or closed
  • mqttUrl URL of your MQTT server
  • mqttUser optional username of your MQTT server
  • mqttPass optional password of your MQTT server
0.10.0

3 years ago

0.11.0

3 years ago

0.9.0

3 years ago

0.8.0

3 years ago

0.7.0

4 years ago

0.6.0

4 years ago

0.3.0

4 years ago

0.5.0

4 years ago

0.4.0

4 years ago

0.2.0

4 years ago