Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Reverted from v. 16

...

The dimmer will reboot and connect to your wifi network. Check your router to find out it's IP address and connect to it via your browser.

Set the GPIOs

3 Way Setup

Issue the following from the console:

backlog module 18;gpio4 21;gpio5 57;gpio12 30;gpio13 18;gpio14 9;switchtopic 0;switchmode1 0;buttontopic 0;rule1 on event#ON do power2 TOGGLE endon;rule1 1;rule2 on event#OFF do power2 TOGGLE endon;rule2 1

Should result in the following:

From the Configuration → Configure Other screen, input the template and friendly name:

Template: 

{"NAME":"Treatlife 3-Way","GPIO":[0,0,0,0,21,158,0,0,22,18,9,0,0],"FLAG":0,"BASE":18}


Image Added


You should end up with a configuration that looks like:


Image AddedImage Removed




2 Way Setup

> backlog module 18;gpio4 52;gpio5 0;gpio12 29;gpio13 17;gpio14 0;switchmode 1

...

For integration with Homebridge, we are going to use the mqttthing plugin and run all of the commands through an mqtt server.


Tasmota Setup:

Image RemovedImage Added


Homebridge Config File

3-Way Setup: 

Code Block
        {
            "accessory": "mqttthing",
    "SonoffTasmotaHTTP        "type": "lightbulb",
            "name": "switch1garage-light",
            "hostnameurl": "http://192.168.1.17250:1883",
            "userusername": "adminhomebridge",
            "password": "pass",
            "topics": {
                "getOn": "stat/garage-light/POWER1",
                "setOn": {
 "xxx"                 "topic": "cmnd/garage-light/POWER2",
                  "apply": "return 'toggle';"
                }
            },
            "onValue": "ON",
            "offValue": "OFF",
            "startPub": {
                "cmnd/garage-light/POWER1": ""
            },
            "confirmationPeriodms": 1000
        },

Out of Sync

Sometimes the switch may be out of sync with what it reports to homebridge. When you click Toggle 2, the Toggle1 should reflect the current state of the light. If this is not the case, click the Toggle 1 button.

Image Added

Reference