arachnetech / homebridge-mqttthing

A plugin for Homebridge allowing the integration of many different accessory types using MQTT.
Apache License 2.0
466 stars 104 forks source link

Can't disable Adaptive lighting #436

Open ghost opened 3 years ago

ghost commented 3 years ago

Im trying to turn off Adaptive lighting for my RGBWW bulbs but it stays on..

    {
        "type": "lightbulb-RGBWW",
        "adaptiveLighting": "false",
        "name": "Eettafel 1",
        "username": "user",
        "password": "pass",
        "mqttPubOptions": {
            "retain": true
        },
        "topics": {
            "getOnline": "tele/Eettafel_1/LWT",
            "getRGBWW": "stat/Eettafel_1/COLOR",
            "setRGBWW": "cmnd/Eettafel_1/COLOR",
            "getOn": "stat/Eettafel_1/POWER",
            "setOn": "cmnd/Eettafel_1/POWER"
        },
        "onValue": "ON",
        "offValue": "OFF",
        "switchWhites": true,
        "accessory": "mqttthing"
    },
arachnetech commented 3 years ago

The false shouldn't be in quotes, i.e. you need

"adaptiveLighting": false

ghost commented 3 years ago

Thanks my bad..