homebridge-tasmota-garage-door

2.0.0 • Public • Published

Homebridge Tasmota Garage Door

Introduction

Welcome to the Homebridge Tasmota Garage Door Plugin for Homebridge.

This plugin allows you to open and close your garage doors with Tasmota Relays using HomeKit and Siri.

Configuration

Please follow my tutorial on how to flash and configure Tasmota to use it with this plugin.

When your Tasmota Relays are ready and configured correctly, add the following code to the accessories array in the Homebridge config file to get started.

Single Relay

{
  "accessory": "Garage-Door",
  "name": "Car",
  "host": "Hostname or IP of Tasmota Relay"
}

Multiple Relays

{
  "accessory": "Garage-Door",
  "name": "Car",
  "host": "Hostname or IP of Tasmota Relay",
  "relay": "2"
}

Password specified in Web Interface

{
  "accessory": "Garage-Door",
  "name": "Car",
  "host": "Hostname or IP of Tasmota Relay",
  "relay": "2",
  "password": "Password of the Web-Interface"
}

Timeslots

You can use Timeslots to prevent simultaneous requests to the relays. Since most remote controls for garage doors doesn't support simultaneous button presses, you can't use them in HomeKit Scenes without further configuration. By using Timeslots in version 2.0.0 and newer, you can enable a smart, unmeasurable delay between requests easily and without further knowledge.

{
  "accessory": "Garage-Door",
  "name": "Car",
  "host": "Hostname or IP of Tasmota Relay",
  "relay": "1",
  "password": "Password of the Web-Interface",
  "useTimeslots": true,
  "timeslotIndex": 1
},
{
  "accessory": "Garage-Door",
  "name": "Car",
  "host": "Hostname or IP of Tasmota Relay",
  "relay": "2",
  "password": "Password of the Web-Interface",
  "useTimeslots": true,
  "timeslotIndex": 2
}

Please take a closer look at the 'timeslotIndex' property and make sure it's an increasing number starting at 1 for all your garage doors (1, 2, 3, 4, ...). This property is used to create an unmeasurable delay between single requests in order to prevent simultaneous calls to the Homebridge.

Note that the Timeslots feature won't work if you don't provide the 'timeslotIndex' property for every garage door which has 'useTimeslots' enabled.

Thanks

Thanks to ageorgios/homebridge-sonoff-tasmota-http for some inspiration.

Readme

Keywords

Package Sidebar

Install

npm i homebridge-tasmota-garage-door

Weekly Downloads

1

Version

2.0.0

License

MIT

Unpacked Size

9.04 kB

Total Files

4

Last publish

Collaborators

  • laurensk