Smart Home Automation Forum
"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)

Pages: 1 2 3 4 5 6 7 8


RE: "KCS" v2.2.2 firmware BIN file download - admin - 02-06-2024

i am testing with KC868-AG, but actually you are using AG Pro. when i have free time, test with AG Pro again.


RE: "KCS" v2.2.2 firmware BIN file download - slim.abdelhedi@gmail.com - 04-20-2024

I recently purchased a KC868-A8 Board with the intention of developing a smart home solution for the education sector. However, during my testing, I discovered that this board does not function properly with MQTT servers such as test.mosquitto.org.
I am reaching out to seek your assistance in resolving this issue. My objective is to be able to command eight output relays and supervise two inputs as well as two digital input sensors via an MQTT server, specifically test.mosquitto.org, from a web interface.
Could you please help me identify the source of the malfunction and rectify it? Your expertise would be greatly appreciated in helping me achieve my development goals.
Thank you in advance for your invaluable assistance, and I am available for any further information you may require.
Best regards,


RE: "KCS" v2.2.2 firmware BIN file download - admin - 04-21-2024

you need download KCS fimrware first, then enable MQTT protocol. here is online guide:
https://www.kincony.com/esp32-kcsv2-firmware.html
you can post your mqtt setting config webpage screen photo.


RE: "KCS" v2.2.2 firmware BIN file download - alankrit0113 - 05-25-2024

Is there KCS support for AG Pro also.? Can KCS be used to configure zigbee devices on AG Pro.?


RE: "KCS" v2.2.2 firmware BIN file download - admin - 05-26-2024

AG Pro download tasmota zigbee firmware for zigbee3.0 device. do you will use for home assistant?


RE: "KCS" v2.2.2 firmware BIN file download - alankrit0113 - 05-26-2024

Yes eventually I’ll use home assistant. But I wanted to connect all boards and sensors locally. So that even if home assistant goes down all basic automation still runs.


RE: "KCS" v2.2.2 firmware BIN file download - admin - 05-26-2024

ok, "KCS" not support zigbee. after you download tasmota firmware, will support that.


RE: "KCS" v2.2.2 firmware BIN file download - eligijus - 06-13-2024

KC868-ap Can you help adjust the Dl input and AO output so that the light is adjustable with the switch?


RE: "KCS" v2.2.2 firmware BIN file download - admin - 06-13-2024

you can check with ESPHome online guide, you can write your own AUTOMATION config yaml.


RE: "KCS" v2.2.2 firmware BIN file download - Philadam - 06-14-2024

I have both a kc868-a16 and kc868-am. Sensors on the a16 work in Home Assistant, but the sensors on the AM don't. Both have MQTT enabled.
Sensor configuration in configuration.yaml are:

mqtt:

  sensor:
 
    - name: 'a16-kcs-temp-sensor-1'
      unique_id: a16-kcs-temp-sensor-1
      state_topic: 'KC868_A16/XXXXXXXXXXXX/STATE'
      suggested_display_precision: 100
      unit_of_measurement: "°F"
      value_template: '{{ value_json.sensor1.temperature }}'
     
    - name: 'a16-kcs-temp-sensor-2'
      unique_id: a16-kcs-temp-sensor-2
      state_topic: 'KC868_A16/XXXXXXXXXXXX/STATE'
      suggested_display_precision: 100
      unit_of_measurement: "°F"
      value_template: '{{ value_json.sensor2.temperature }}'

    - name: 'a16-kcs-temp-sensor-3'
      unique_id: a16-kcs-temp-sensor-3
      state_topic: 'KC868_A16/XXXXXXXXXXXX/STATE'
      suggested_display_precision: 100
      unit_of_measurement: "°F"
      value_template: '{{ value_json.sensor3.temperature }}'

    - name: 'am-kcs-temp-sensor-1'
      unique_id: am-kcs-temp-sensor-1
      state_topic: 'KC868_AM/XXXXXXXXXXXX/STATE'
      suggested_display_precision: 100
      unit_of_measurement: "°F"
      value_template: '{{ value_json.sensor1.temperature }}'
     
    - name: 'am-kcs-temp-sensor-2'
      unique_id: am-kcs-temp-sensor-2
      state_topic: 'KC868_AM/ XXXXXXXXXXXX /STATE'
      suggested_display_precision: 100
      unit_of_measurement: "°F"
      value_template: '{{ value_json.sensor2.temperature }}'
     
    - name: 'am-kcs-temp-sensor-3'
      unique_id: am-kcs-temp-sensor-3
      state_topic: 'KC868_AM/ XXXXXXXXXXXX /STATE'
      suggested_display_precision: 100
      unit_of_measurement: "°F"
      value_template: '{{ value_json.sensor3.temperature }}'
     
    - name: 'am-kcs-temp-sensor-4'
      unique_id: am-kcs-temp-sensor-4
      state_topic: 'KC868_AM/ XXXXXXXXXXXX /STATE'
      suggested_display_precision: 100
      unit_of_measurement: "°F"
      value_template: '{{ value_json.sensor4.temperature }}'

Any ideas on why the sensors in the kc868-am are not showing up in the HA view using MQTT.