Smart Home Automation Forum

Full Version: KC868-H32B blinds motor control and connect
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
Hello

Can you help with connection and adjustment of all motor blinds on the house
I have 22 shutter motors
i want to connect everything to KC868-H32B
I bought two pieces
Order ID: 8151334628020945
Order ID: 8151122210730945

The engine model I own are Solus 2PA
https://www.somfy.co.in/products/1032574...2-pack-100

I need help with connecting the wires because I won't have a button to control the blinds, but all the motors are connected directly to the KC868-H32B, the control is only done using the app.

In order not to damage the relay by wrong connection, you can send me some instructions and information.

I have see that diagram but im not understand 
https://ibb.co/nChbVM3

Im not understand becuse i have think that all motors get power from the relay KC868-H32B or i must bring power cable N L direkt on motors
can you draw a photo on the paper, tell me your motor's wire define? then give you a solution. if you want to add manual control buttons, you can add "switch terminal board", it have " motor" work mode, use every 2 relay for one motor work for "UP" , "DOWN" , "STOP".
(07-04-2022, 01:16 AM)admin Wrote: [ -> ]can you draw a photo on the paper, tell me your motor's wire define? then give you a solution. if you want to add manual control buttons, you can add "switch terminal board", it have " motor" work mode, use every 2 relay for one motor work for "UP" , "DOWN" , "STOP".

Pictures are attached 

[Image: WW5D8K7]

https://ibb.co/WW5D8K7

I have put red circle for information that i WILL NOT have swith or any phisycal button .
All motors will control VIA wifi APP

Solus motors information - https://service.somfy.com/downloads/in_v...64b_ig.pdf
1. if you use home assistant software, you just set interlock mode in home assistant.
2. if you use "kincony smart home" app directly. you need to do two step.
A. every two channel relay will control one motor. let two relay's COM connect with "L" together, then relay-1 output connect with motor-"2", relay-2 connect with motor-"3"
B. make "scene mode" in "kincony smart home" app, every scene mode such as "relay1 ON, relay2 OFF" and "relay1 OFF, relay2 ON", "relay1 OFF, relay2 OFF" for motor UP, motor DOWN, motor STOP.

here are some customer's case video you can see:
https://www.youtube.com/watch?v=5MFgB6RF...SM&index=9
https://www.youtube.com/watch?v=e1khSbs5...M&index=10
https://www.youtube.com/watch?v=h7Vg_2tU...M&index=11
https://www.youtube.com/watch?v=t52qUpaB...M&index=12
(07-04-2022, 01:02 PM)admin Wrote: [ -> ]1. if you use home assistant software, you just set interlock mode in home assistant.
2. if you use "kincony smart home" app directly. you need to do two step.
    A. every two channel relay will control one motor. let two relay's COM connect with "L" together, then relay-1 output connect with motor-"2", relay-2 connect with motor-"3"
    B. make "scene mode" in "kincony smart home" app, every scene mode such as "relay1 ON, relay2 OFF" and "relay1 OFF, relay2 ON", "relay1 OFF, relay2 OFF" for motor UP, motor DOWN, motor STOP.

here are some customer's case video you can see:
https://www.youtube.com/watch?v=5MFgB6RF...SM&index=9
https://www.youtube.com/watch?v=e1khSbs5...M&index=10
https://www.youtube.com/watch?v=h7Vg_2tU...M&index=11
https://www.youtube.com/watch?v=t52qUpaB...M&index=12

Ok, Thank You
When i have all connect i will adjust all and send a video.
yes, it's ok.
my configuration if someone need... for Home Assistant

interlock in my case set to 1 second but it possible to set 100;200;300 millisecond or something simmilar

Template for cover (for configuration.yaml or separate name_file.yaml):

switch.relay1c - shutter down
switch.relay2c -shutter up

Code:
cover:
  - platform: template
    covers:
      garderoba:
        device_class: shutter
        friendly_name: "Roleta garderoba"
        position_template: 50
        open_cover:
          - service: switch.turn_off
            target:
              entity_id: switch.relay1c
          - condition: state
            entity_id: switch.relay2c
            state: "off"
          - delay: '00:00:01'
          - service: switch.turn_on
            target:
              entity_id: switch.relay2c
        close_cover:
          - service: switch.turn_off
            target:
              entity_id: switch.relay2c
          - condition: state
            entity_id: switch.relay1c
            state: "off"
          - delay: '00:00:01'
          - service: switch.turn_on
            target:
              entity_id: switch.relay1c
        stop_cover:
          service: switch.turn_off
          target:
            entity_id:
             - switch.relay1c
             - switch.relay2c
        icon_template: >-
          {% if is_state('switch.relay1c', 'on') %}
          mdi:arrow-down-bold-outline
          {% elif is_state('switch.relay2c', 'on') %}
          mdi:arrow-up-bold-outline
          {% endif %}


entity card : ( "Paper Buttons Row" from HACS required)



Code:
type: entities
entities:
  - entity: cover.garderoba
    card_mod:
      style: |
        :host {
          {% if states('switch.relay1c') == 'on' %}
            --paper-item-icon-color: red;
            color: ;
          {% elif states('switch.relay2c') == 'on' %}
            --paper-item-icon-color: red;
            color:  ;
          {% endif %}
        }

Time for open and close shutters i have setting direct in KC868-H32B.

Result:

Enjoy  Cool

[attachment=1597]
good job, thanks.
Hello everyone,
I have 13 blind motors to drive, 1 garage door and 1 fence door.

I bought 1 H32BS and 2xE16.

The intention is to use press wall switches and home assistant (in a later stage - still not installed).

What is the connection scheme and what adjustments need to be done on H32BS?
Thanks.
usually two relay work with one motor, now H32BS the newest firmware have added "interlock" option for motor, that is useful for motor and protect motor. make sure you can update to firmware v1.50SP. here is download link: https://www.kincony.com/forum/showthread.php?tid=2455
Pages: 1 2 3