Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,001
» Latest member: qbtobc
» Forum threads: 2,433
» Forum posts: 12,575

Full Statistics

Online Users
There are currently 40 online users.
» 1 Member(s) | 24 Guest(s)
Amazonbot, Bing, Bytespider, Crawl, Google, PetalBot, Yandex, bot, alexjarvis

Latest Threads
AS ESPHome yaml for home ...
Forum: KinCony AS
Last Post: eyevisions
3 hours ago
» Replies: 5
» Views: 313
KC868-A8 board esphome + ...
Forum: KC868-A8
Last Post: gnetinternet@gmail.com
Today, 07:19 AM
» Replies: 10
» Views: 73
"KCS" v3.0.3 firmware for...
Forum: "KCS" firmware system
Last Post: admin
Yesterday, 10:01 PM
» Replies: 0
» Views: 18
Kc868-a16 v1.6
Forum: DIY Project
Last Post: admin
Yesterday, 11:17 AM
» Replies: 1
» Views: 19
KCS firmware - MQTT LWT?
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
Yesterday, 11:15 AM
» Replies: 35
» Views: 3,334
"KCS" v2.2.7 firmware BIN...
Forum: "KCS" firmware system
Last Post: admin
Yesterday, 11:09 AM
» Replies: 0
» Views: 52
Help whit update Cold CPU...
Forum: KC868-HxB series Smart Controller
Last Post: admin
Yesterday, 08:36 AM
» Replies: 3
» Views: 24
Clarification on CT Clamp...
Forum: KC868-M16 / M1 / MB / M30
Last Post: admin
Yesterday, 12:40 AM
» Replies: 1
» Views: 23
KC868-AIO connecting to E...
Forum: KC868-AIO
Last Post: admin
Yesterday, 12:37 AM
» Replies: 1
» Views: 23
Digital input 11.2v
Forum: KC868-A8
Last Post: admin
Yesterday, 12:35 AM
» Replies: 1
» Views: 5

  Lesson16 - integrate ZigBee device to home assistant by Zigbee2MQTT
Posted by: admin - 04-13-2022, 01:42 AM - Forum: Home automation training courses - Replies (5)


1. Add the repository URL under Supervisor->Add-on store->...->Manage add-on repositories:

https://github.com/zigbee2mqtt/hassio-zigbee2mqtt

2. Zigbee2mqtt add-on Configuration for home assistant

data_path: /config/zigbee2mqtt
external_converters: []
devices: devices.yaml
groups: groups.yaml
homeassistant: true
permit_join: false
mqtt:
  base_topic: zigbee2mqtt
  server: mqtt://192.168.1.96:1883
  user: mqtt
  password: '123'
serial:
  port: /dev/ttyACM0
advanced:
  log_level: info
  pan_id: 6754
  channel: 11
  network_key:
    - 1
    - 3
    - 5
    - 7
    - 9
    - 11
    - 13
    - 15
    - 0
    - 2
    - 4
    - 6
    - 8
    - 10
    - 12
    - 13
  availability_blocklist: []
  availability_passlist: []
device_options: {}
blocklist: []
passlist: []
queue: {}
frontend:
  port: 8099
experimental: {}
socat:
  enabled: false
  master: pty,raw,echo=0,link=/tmp/ttyZ2M,mode=777
  slave: tcp-listen:8485,keepalive,nodelay,reuseaddr,keepidle=1,keepintvl=1,keepcnt=5
  options: '-d -d'

3. feedback click action mqtt message:

  1: single
  2: double
  3: triple
  4: quadruple
  5: many

4. Xiaomi zigbee switch configure for home assistant by Zigbee2mqtt

sensor:
  - platform: mqtt
    name: Voltage
    state_topic: "zigbee2mqtt/0x00158d00067ec29e"
    value_template: "{{ value_json.battery }}"
    unit_of_measurement: "%"
    availability_topic: "zigbee2mqtt/bridge/state"
    payload_available: "online"
    payload_not_available: "offline"
    qos: 0
    device_class: battery

  - platform: mqtt
    name: signal
    state_topic: "zigbee2mqtt/0x00158d00067ec29e"
    value_template: "{{ value_json.linkquality }}"
    availability_topic: "zigbee2mqtt/bridge/state"
    payload_available: "online"
    payload_not_available: "offline"
    qos: 0
    device_class: signal_strength

  - platform: mqtt
    name: click
    state_topic: "zigbee2mqtt/0x00158d00067ec29e"
    value_template: "{{ value_json.click }}"
    availability_topic: "zigbee2mqtt/bridge/state"
    payload_available: "online"
    payload_not_available: "offline"

Note: ID need replace with your device. such as '0x00158d00067ec29e'

5. create a new automation:

Trigger type: State
Entity: sensor.click
To: single


Actions:
Action type: Call service
Service: Switch:Toggle
+ Pick entity

Print this item

  Lesson15 - control IR device by Infrared extender cable
Posted by: admin - 04-12-2022, 12:56 AM - Forum: Home automation training courses - No Replies


[Image: attachment.php?aid=831]   
[Image: attachment.php?aid=705]   
[Image: attachment.php?aid=706]

ESPHome config:

# Example configuration entry
remote_transmitter:
  pin: GPIO23
  carrier_duty_percent: 50%

climate:
  - platform: mitsubishi    # adjust to match your AC unit!
    name: "Room AC"

Print this item

  Lesson14 - integrate DS18B20 temperature sensor to home assistant
Posted by: admin - 04-12-2022, 12:48 AM - Forum: Home automation training courses - Replies (10)


DS18B20 temperature range: -55°C to +125°C and is accurate to ±0.5°C

ESPHome config:

# Example configuration entry
dallas:
  - pin: 4
    update_interval: 5s

# Individual sensors
sensor:
  - platform: dallas
    address: 0x69062162d9ec4328
    name: "Temperature"


   

Print this item

  KC868-Server schematic for ESP32 and raspberry pi CM4 circuit
Posted by: admin - 04-11-2022, 01:57 PM - Forum: KC868-Server Raspberry Pi4 local server - No Replies

ESP32 use serial port communication with KinCony ARM CPU. user can write any code work with KinCony ARM CPU read/write digital input, digital output and analog input.


.pdf   KC868_SERVER_OPENSOURCE_SCH.pdf (Size: 373.22 KB / Downloads: 705)

Print this item

  KC868-E16 work with Loxone system case-3
Posted by: admin - 04-08-2022, 11:48 AM - Forum: KinCony integrate with Loxone home automation - No Replies

   

Print this item

  Loxone XML template file for KC868-H32B
Posted by: admin - 04-08-2022, 11:45 AM - Forum: KinCony integrate with Loxone home automation - No Replies

You just need to select "Virtual Outputs" and import this template. After this file is imported only the IP address as per user's ip address has to be give. There is no need to configure all the 32 relays for ON and OFF commands.


.zip   VO_KC868-H32B.zip (Size: 710 bytes / Downloads: 293)

Print this item

Photo KC868-E16 work with Loxone system case-2
Posted by: admin - 04-08-2022, 11:41 AM - Forum: KinCony integrate with Loxone home automation - No Replies

   
   
   

Print this item

Photo KC868-E16 work with Loxone system
Posted by: admin - 04-08-2022, 11:38 AM - Forum: KinCony integrate with Loxone home automation - No Replies

   

Print this item

Photo KC868-G IR Loxone integration
Posted by: admin - 04-08-2022, 11:24 AM - Forum: KinCony integrate with Loxone home automation - No Replies

   

Print this item

  KC868-A16 Loxone integration
Posted by: admin - 04-08-2022, 11:20 AM - Forum: KinCony integrate with Loxone home automation - Replies (2)

before integration you should install tasmota firmware for KC868-A16 firstly. here is link for KinCony KC868-A16's tasmota BIN file: https://www.kincony.com/forum/showthread.php?tid=1715

Integrating Kincony KC868-A16 in Loxone Config details: 
.pdf   KC868-A16 Loxone integration.pdf (Size: 2.74 MB / Downloads: 624)

Print this item