Smart Home Automation Forum
change wake up name - Printable Version

+- Smart Home Automation Forum (https://www.kincony.com/forum)
+-- Forum: Technical Support (https://www.kincony.com/forum/forumdisplay.php?fid=20)
+--- Forum: KinCony AS (https://www.kincony.com/forum/forumdisplay.php?fid=64)
+--- Thread: change wake up name (/showthread.php?tid=7227)

Pages: 1 2


change wake up name - gal - 12-13-2024

Hi 
How do I change wake up name Hey Jarvis to a different name I want , I do not have the option like in your video as shown below..


   


RE: change wake up name - admin - 12-14-2024

you can config different wake up name in esphome yaml, use different "model"
here is ESPHome guide: https://esphome.io/components/micro_wake_word


RE: change wake up name - gal - 12-14-2024

Hi,
Thanks for your reply but I really do not understand all of this on the link you sent me..
I have no idea what to do.
Any chance of you showing me?
There are a couple of other questions I have as well I hope you can help me with..
I have bought from you a a32 pro, F24 in post, b16m and a kc868 Aio ,the a32 pro I have kcs firmware which works great via mqtt to HA, but I cannot work out how to get the aio to connect to Ha through mqqt I have it setup and connected showing enabled on the kcs firmware but it is not showing in Ha mqtt like the a32pro did?
I have many things yet to try to connect to the aio and A32pro through kcs firmware and do not know how, eg wiegand access, water temp sensors , temp and humidity tank level sensors and ag pro aio ect .
All the videos I have watched go through esphome but I have noticed once you install kcs firmware it wipes out esphome firmware I believe, so how do I connect these through kcs firmware....?
I am new to Home assistant and your products even though I have watched all your vids on youtube for last 2 years and this is a big project I am trying to do.
I have no problem with all the wiring side , I am not the best on computers and programming these so I really would appreciate your help on this project.
Many Thanks.


RE: change wake up name - admin - 12-15-2024

for example:

modify your ymal:

micro_wake_word:
  on_wake_word_detected:
    # then:
    - voice_assistant.start:
        wake_word: !lambda return wake_word;
    - light.turn_on:
        id: led_ww         
        red: 30%
        green: 30%
        blue: 70%
        brightness: 60%
        effect: fast pulse
  models:
    - model: github://esphome/micro-wake-word-models/models/v2/hey_jarvis.json  #(-->replace this for different wake up word)


    - model: github://esphome/micro-wake-word-models/models/v2/hey_jarvis.json #(this use by jarvis)

    - model: github://esphome/micro-wake-word-models/models/v2/okay_nabu.json  #(this use by nabu)

--------------------------------------------
1. A32 Pro use by KCS v3 firmware, so that support mqtt auto discovery function. it with zero code and config, very easy integrate to HA. But KC868-AIO not use by ESP32-S3, not support KCS v3 firmware. you can integrate KC868-AIO by ESPHome or MQTT.
a. if use by ESPHome, here is config yaml file for KC868-AIO: https://www.kincony.com/forum/showthread.php?tid=2736
b. if use by MQTT, you need config all DI,DO,AI,AO by mqtt according to this mqtt protocol document: https://www.kincony.com/forum/showthread.php?tid=3105
here also have mqtt demo code for KC868-A8, AIO use by same way:
https://www.kincony.com/forum/showthread.php?tid=7164

2. KCS firmware not support by Wiegand. i suggest you config by ESPHome, so that Wiegand is supported. also can integrate to HA for all hardware resource.


RE: change wake up name - gal - 12-15-2024

Hi

Thank you for you reply

I have followed the link Instructions for the kc868Aio mqtt you gave me and have found them in mosquito as in picture and I have made new dashboard ready for them but do not know how to get them in to dashboard and set them up to work?
Could you please give me instruction's on how to in a beginners format.
Much appreciated for your help.
Thanks.


RE: change wake up name - admin - 12-16-2024

when control relay and read input state correct in HA? work well now?


RE: change wake up name - gal - 12-16-2024

HI
I have no control of relay output as shown in picture.
I followed instruction and copied my serial number on all places as per instructions.
All of the a32pro mqtt says core mosquito on the them , The aio just say A8kcs if that means anything to you?


RE: change wake up name - admin - 12-16-2024

post your yaml.


RE: change wake up name - gal - 12-17-2024

(12-16-2024, 11:14 AM)admin Wrote: post your yaml.

# Loads default set of integrations. Do not remove.
default_config:

# Load frontend themes from the themes folder
frontend:
  themes: !include_dir_merge_named themes

automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml


       
mqtt:
  switch:
  - name: 'a8-kcs-output-1'
    unique_id: a8-kcs-output-1
    state_topic: 'KC868_A8/08F9E08B0488/STATE'
    command_topic: 'KC868_A8/08F9E08B0488/SET'
    payload_on:  '{"output1":{"value":true}}'
    payload_off:  '{"output1":{"value":false}}'
    value_template: '{{ value_json.output1.value }}'
    state_on: true
    state_off: false

  - name: 'a8-kcs-output-2'
    unique_id: a8-kcs-output-2
    state_topic: 'KC868_A8/08F9E08B0488/STATE'
    command_topic: 'KC868_A8/08F9E08B0488/SET'
    payload_on:  '{"output2":{"value":true}}'
    payload_off:  '{"output2":{"value":false}}'
    value_template: '{{ value_json.output2.value }}'
    state_on: true
    state_off: false

  - name: 'a8-kcs-output-3'
    unique_id: a8-kcs-output-3
    state_topic: 'KC868_A8/08F9E08B0488/STATE'
    command_topic: 'KC868_A8/08F9E08B0488/SET'
    payload_on:  '{"output3":{"value":true}}'
    payload_off:  '{"output3":{"value":false}}'
    value_template: '{{ value_json.output3.value }}'
    state_on: true
    state_off: false

  - name: 'a8-kcs-output-4'
    unique_id: a8-kcs-output-4
    state_topic: 'KC868_A8/08F9E08B0488/STATE'
    command_topic: 'KC868_A8/08F9E08B0488/SET'
    payload_on:  '{"output4":{"value":true}}'
    payload_off:  '{"output4":{"value":false}}'
    value_template: '{{ value_json.output4.value }}'
    state_on: true
    state_off: false

  - name: 'a8-kcs-output-5'
    unique_id: a8-kcs-output-5
    state_topic: 'KC868_A8/08F9E08B0488/STATE'
    command_topic: 'KC868_A8/08F9E08B0488/SET'
    payload_on:  '{"output5":{"value":true}}'
    payload_off:  '{"output5":{"value":false}}'
    value_template: '{{ value_json.output5.value }}'
    state_on: true
    state_off: false

  - name: 'a8-kcs-output-6'
    unique_id: a8-kcs-output-6
    state_topic: 'KC868_A8/08F9E08B0488/STATE'
    command_topic: 'KC868_A8/08F9E08B0488/SET'
    payload_on:  '{"output6":{"value":true}}'
    payload_off:  '{"output6":{"value":false}}'
    value_template: '{{ value_json.output6.value }}'
    state_on: true
    state_off: false

  - name: 'a8-kcs-output-7'
    unique_id: a8-kcs-output-7
    state_topic: 'KC868_A8/08F9E08B0488/STATE'
    command_topic: 'KC868_A8/08F9E08B0488/SET'
    payload_on:  '{"output7":{"value":true}}'
    payload_off:  '{"output7":{"value":false}}'
    value_template: '{{ value_json.output7.value }}'
    state_on: true
    state_off: false

  - name: 'a8-kcs-output-8'
    unique_id: a8-kcs-output-8
    state_topic: 'KC868_A8/08F9E08B0488/STATE'
    command_topic: 'KC868_A8/08F9E08B0488/SET'
    payload_on:  '{"output8":{"value":true}}'
    payload_off:  '{"output8":{"value":false}}'
    value_template: '{{ value_json.output8.value }}'
    state_on: true
    state_off: false



  binary_sensor:
  - name: 'a8-kcs-input-1'
    unique_id: a8-kcs-input-1
    state_topic: 'KC868_A8/08F9E08B0488/STATE'
    value_template: '{{ value_json.input1.value }}'
    payload_on: true
    payload_off: false

  - name: 'a8-kcs-input-2'
    unique_id: a8-kcs-input-2
    state_topic: 'KC868_A8/08F9E08B0488/STATE'
    value_template: '{{ value_json.input2.value }}'
    payload_on: true
    payload_off: false

  - name: 'a8-kcs-input-3'
    unique_id: a8-kcs-input-3
    state_topic: 'KC868_A8/08F9E08B0488/STATE'
    value_template: '{{ value_json.input3.value }}'
    payload_on: true
    payload_off: false

  - name: 'a8-kcs-input-4'
    unique_id: a8-kcs-input-4
    state_topic: 'KC868_A8/08F9E08B0488/STATE'
    value_template: '{{ value_json.input4.value }}'
    payload_on: true
    payload_off: false

  - name: 'a8-kcs-input-5'
    unique_id: a8-kcs-input-5
    state_topic: 'KC868_A8/08F9E08B0488/STATE'
    value_template: '{{ value_json.input5.value }}'
    payload_on: true
    payload_off: false

  - name: 'a8-kcs-input-6'
    unique_id: a8-kcs-input-6
    state_topic: 'KC868_A8/08F9E08B0488/STATE'
    value_template: '{{ value_json.input6.value }}'
    payload_on: true
    payload_off: false

  - name: 'a8-kcs-input-7'
    unique_id: a8-kcs-input-7
    state_topic: 'KC868_A8/08F9E08B0488/STATE'
    value_template: '{{ value_json.input7.value }}'
    payload_on: true
    payload_off: false

  - name: 'a8-kcs-input-8'
    unique_id: a8-kcs-input-8
    state_topic: 'KC868_A8/08F9E08B0488/STATE'
    value_template: '{{ value_json.input8.value }}'
    payload_on: true
    payload_off: false


RE: change wake up name - admin - 12-17-2024

Do you want config KC868-AIO integrate to home assistant by MQTT?
give you the sample use by KC868-A8, just need modify it suitable for AIO, do you don't know how to modify for AIO?