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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 9,090
» Latest member: stonediscoveruk
» Forum threads: 4,002
» Forum posts: 20,294

Full Statistics

Online Users
There are currently 24 online users.
» 0 Member(s) | 14 Guest(s)
Amazonbot, Baidu, Bytespider, bot

Latest Threads
automations yaml for read...
Forum: Pi5R16
Last Post: admin
45 minutes ago
» Replies: 0
» Views: 1
home assistant configurat...
Forum: Pi5R16
Last Post: admin
47 minutes ago
» Replies: 0
» Views: 1
KC868-HA v2 firmware V200...
Forum: KC868-HA /HA v2
Last Post: admin
52 minutes ago
» Replies: 6
» Views: 1,931
Cant flash esphom
Forum: B16M
Last Post: admin
1 hour ago
» Replies: 16
» Views: 681
KC868-HA RS485 INPUT & OU...
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
1 hour ago
» Replies: 53
» Views: 27,624
problem with kc868 has v2
Forum: News
Last Post: admin
1 hour ago
» Replies: 11
» Views: 90
RS485 Modbus SHT30 sensor...
Forum: "KCS" v3 firmware
Last Post: PTZ10RUS
3 hours ago
» Replies: 5
» Views: 340
MODBUS
Forum: KC868-A2v3
Last Post: admin
10 hours ago
» Replies: 3
» Views: 24
RS485 TS sensor with A16v...
Forum: KC868-A16v3
Last Post: admin
Yesterday, 07:24 AM
» Replies: 0
» Views: 13
RS485 TS sensor with A16v...
Forum: Extender module
Last Post: admin
Yesterday, 07:24 AM
» Replies: 0
» Views: 13

  KC868-H32BS integrate to apple homekit by Node-Red
Posted by: admin - 04-14-2022, 06:29 AM - Forum: Development - No Replies


.pdf   KC868-H32 NODE RED HOMEKIT.pdf (Size: 3.3 MB / Downloads: 827)

Print this item

  KC868-G IR integration
Posted by: admin - 04-14-2022, 06:22 AM - Forum: KinCony integrate with Loxone home automation - No Replies


.pdf   KC868-G IR INTEGRATION.pdf (Size: 3.37 MB / Downloads: 867)

Print this item

  Automation using KC868-A16 and KC868-E16 diagram
Posted by: admin - 04-14-2022, 06:18 AM - Forum: KC868-A16 - No Replies


.pdf   Automation using KC868-A16 and KC868-E16.pdf (Size: 6.26 MB / Downloads: 1171)

Print this item

  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: 1324)

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: 781)

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