pbrunier / node-red-contrib-dyson-purelink

This Node RED module can control dyson purifier (tested with dyson hot&cool pure link)
Other
11 stars 4 forks source link

Turn on/off or set fan speed are not working #73

Closed Dani-75 closed 10 months ago

Dani-75 commented 1 year ago

Connection to Dyson Purifier and get-functions (e.g. getFanStatus) work well but turnon/turnoff does not do anything and also does not return any error

pbrunier commented 10 months ago

Just tested it with the turnOn/turnOff payload actions. Works fine. Please compare your nodes connected to the Dyson link node with the snippet below.

image


[
    {
        "id": "722f98e95e17bafc",
        "type": "inject",
        "z": "3655cc704227a502",
        "name": "",
        "props": [
            {
                "p": "payload"
            }
        ],
        "repeat": "",
        "crontab": "",
        "once": false,
        "onceDelay": 0.1,
        "topic": "",
        "payload": "{\"action\":\"turnOn\"}",
        "payloadType": "json",
        "x": 170,
        "y": 360,
        "wires": [
            [
                "9f3208dc89104247"
            ]
        ]
    },
    {
        "id": "766d9bf6b51cf1d5",
        "type": "inject",
        "z": "3655cc704227a502",
        "name": "",
        "props": [
            {
                "p": "payload"
            }
        ],
        "repeat": "",
        "crontab": "",
        "once": false,
        "onceDelay": 0.1,
        "topic": "",
        "payload": "{\"action\":\"turnOff\"}",
        "payloadType": "json",
        "x": 170,
        "y": 400,
        "wires": [
            [
                "9f3208dc89104247"
            ]
        ]
    }
]