Skip to content

Connect Sonoff Devices running the Sonoff-Tasmota firmware easy to node red

License

Notifications You must be signed in to change notification settings

EdgarM73/node-red-contrib-sonoff-tasmota

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-red-contrib-sonoff-tasmota

NPM version

A Node-RED node, to control Sonoff switches running the awesome Sonoff-Tasmota firmware

Installation

Install node-red-contrib-sonoff-tasmota using npm:

npm install --save node-red-contrib-sonoff-tasmota-enhanced

Usage

To use the node, just drag the node from the Sonoff section to the Flow, add the id and the mqtt broker. To control the switch you can use a true/false input node or connect a UI Button.

Toggle: send a Message with topic 'command' and payload 'toggle' to the node to toggle the tasmota device

ON/OFF: send a Message with topic 'command' and payload 'on' of 'off' to the node to turn ON or OFF the tasmota device

Color: send a Message with topic 'color' and payload Color

Dimmer: send a Message with topic 'dimmer' and payload number in percent

Sample FLOW

Sample Flow

[
    {
        "id": "13346fe3.f9dbb",
        "type": "tab",
        "label": "Flow 3",
        "disabled": false,
        "info": ""
    },
    {
        "id": "44ae399c.bb1f98",
        "type": "Sonoff device Enhanced",
        "z": "13346fe3.f9dbb",
        "mode": "0",
        "broker": "29d7744c.2a685c",
        "device": "wzindirekt",
        "name": "",
        "onValue": "ON",
        "offValue": "OFF",
        "toggleValue": "toggle",
        "cmdPrefix": "cmnd",
        "statPrefix": "stat",
        "telePrefix": "tele",
        "x": 580,
        "y": 200,
        "wires": [
            [
                "5f49cd7a.34a5d4",
                "a622f4f8.d75468"
            ]
        ]
    },
    {
        "id": "5f49cd7a.34a5d4",
        "type": "ui_switch",
        "z": "13346fe3.f9dbb",
        "name": "",
        "label": "switch",
        "tooltip": "",
        "group": "9d03a37c.7d0558",
        "order": 3,
        "width": 0,
        "height": 0,
        "passthru": false,
        "decouple": "false",
        "topic": "",
        "style": "",
        "onvalue": "true",
        "onvalueType": "bool",
        "onicon": "",
        "oncolor": "",
        "offvalue": "false",
        "offvalueType": "bool",
        "officon": "",
        "offcolor": "",
        "x": 580,
        "y": 120,
        "wires": [
            [
                "44ae399c.bb1f98"
            ]
        ]
    },
    {
        "id": "bf67af5f.71565",
        "type": "inject",
        "z": "13346fe3.f9dbb",
        "name": "",
        "topic": "command",
        "payload": "toggle",
        "payloadType": "str",
        "repeat": "",
        "crontab": "",
        "once": false,
        "onceDelay": 0.1,
        "x": 320,
        "y": 180,
        "wires": [
            [
                "44ae399c.bb1f98"
            ]
        ]
    },
    {
        "id": "be4c48bd.0668f8",
        "type": "inject",
        "z": "13346fe3.f9dbb",
        "name": "",
        "topic": "color",
        "payload": "#ff4500",
        "payloadType": "str",
        "repeat": "",
        "crontab": "",
        "once": false,
        "onceDelay": 0.1,
        "x": 310,
        "y": 120,
        "wires": [
            [
                "44ae399c.bb1f98"
            ]
        ]
    },
    {
        "id": "a622f4f8.d75468",
        "type": "debug",
        "z": "13346fe3.f9dbb",
        "name": "",
        "active": true,
        "tosidebar": true,
        "console": false,
        "tostatus": false,
        "complete": "false",
        "x": 760,
        "y": 200,
        "wires": []
    },
    {
        "id": "29d7744c.2a685c",
        "type": "mqtt-broker",
        "z": "",
        "name": "pinky MQTT",
        "broker": "192.168.178.55",
        "port": "1883",
        "clientid": "",
        "usetls": false,
        "compatmode": true,
        "keepalive": "60",
        "cleansession": true,
        "birthTopic": "",
        "birthQos": "0",
        "birthPayload": "",
        "closeTopic": "",
        "closeQos": "0",
        "closePayload": "",
        "willTopic": "",
        "willQos": "0",
        "willPayload": ""
    },
    {
        "id": "9d03a37c.7d0558",
        "type": "ui_group",
        "z": "",
        "name": "Raum-Temperatur",
        "tab": "b132103a.17961",
        "disp": true,
        "width": "6",
        "collapse": true
    },
    {
        "id": "b132103a.17961",
        "type": "ui_tab",
        "z": "",
        "name": "Wohnzimmer",
        "icon": "dashboard",
        "order": 12,
        "disabled": false,
        "hidden": false
    }
]

License

MIT © Steffen Müller

About

Connect Sonoff Devices running the Sonoff-Tasmota firmware easy to node red

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 69.1%
  • HTML 30.9%