Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
"KCS" v2.2.2 firmware BIN file download
#71
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?


Attached Files Image(s)
   
Reply
#72
we will feedback to our software team, whether next new version update can support this.
Reply
#73
(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
Reply
#74
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
Reply


Forum Jump:


Users browsing this thread:
1 Guest(s)