"KCS" v2.2.2 firmware BIN file download - Printable Version +- Smart Home Automation Forum (https://www.kincony.com/forum) +-- Forum: Technical Support (https://www.kincony.com/forum/forumdisplay.php?fid=20) +--- Forum: "KCS" firmware system (https://www.kincony.com/forum/forumdisplay.php?fid=40) +--- Thread: "KCS" v2.2.2 firmware BIN file download (/showthread.php?tid=3791) |
RE: "KCS" v2.2.2 firmware BIN file download - 31marlosouza - 08-15-2024 I have the Kincony A6 firmware V2.2.2 card and the Mqtt Broker does not connect with a 38-character password. The problem is not with the broker, I have already tested it on another broker with a password of 28 characters and it works, and as it is an IoT application, I cannot change the device's password, could I update it to accept a longer password? RE: "KCS" v2.2.2 firmware BIN file download - admin - 08-16-2024 we will feedback to our software team, whether next new version update can support this. RE: "KCS" v2.2.2 firmware BIN file download - whitehawk1979 - 09-01-2024 (08-13-2024, 05:48 AM)admin Wrote: here is ADR KCS firmware: Hi, do you have a newer firmware ? this is not working well in mqtt, when is connected, in the mqttExplorer the sent values are {"input1":{"value":false},"input2":{"value":false},"adc1":{"value":0}"dimmer1":{"value":1}} but after i set up the dimming function in yaml file, the dimmer 1 is automatically changing to : " dimmer2" after the config yaml corection the switch and the dimming is not working, just showed in Home Assistant. is also connected in Tuya, there is pretty functional this is my light mqtt code #KC868-ADR1 - name: ADR1 unique_id: ADR1 schema: template command_topic: "ADR/A0A3B3FE45D0/SET" state_topic: "ADR/A0A3B3FE45D0/STATE" command_on_template: > {%- if brightness is defined -%} ,{"dimmer2":{"value":{{(brightness / 255 * 100) | int - 1}}} {%- else -%} ,'{"dimmer2":{"value":99}}' {%- endif -%} command_off_template: '{"dimmer2":{"value":0}}' state_template: > {%- if value_json.dimmer2.value == 0 -%} off {%- else -%} on {%- endif -%} brightness_template: '{{(value_json.dimmer2.value / 99 * 255)| int}}' binary_sensors: #KC868-ADR1 - name: 'KC868_ADR1-input-1' unique_id: KC868_ADR1-input-1 state_topic: 'ADR/A0A3B3FE45D0/STATE' value_template: '{{ value_json.input1.value }}' payload_on: true payload_off: false - name: 'KC868_ADR1-input-2' unique_id: KC868_ADR1-input-2 state_topic: 'ADR/A0A3B3FE45D0/STATE' value_template: '{{ value_json.input2.value }}' payload_on: true payload_off: false sensors: #KC868-ADR1 - name: 'KC868_ADR1-1' unique_id: KC868_ADR1-1 state_topic: 'ADR/A0A3B3FE45D0/STATE' unit_of_measurement: '%' value_template: '{{ value_json.adc1.value }}' #payload_on: true #payload_off: false but unfortunately not working RE: "KCS" v2.2.2 firmware BIN file download - admin - 09-01-2024 if you are using KinCony ADR dimmer controller, you can config it by ESPHome directly. here is yaml file: https://www.kincony.com/forum/showthread.php?tid=2476 |