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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,364
» Latest member: john2305
» Forum threads: 2,574
» Forum posts: 13,303

Full Statistics

Online Users
There are currently 50 online users.
» 1 Member(s) | 27 Guest(s)
AhrefsBot, Applebot, Bing, Bytespider, Crawl, Google, PetalBot, Semrush, Yandex, bot, john2305

Latest Threads
Need help with configurat...
Forum: KC868-HxB series Smart Controller
Last Post: admin
1 hour ago
» Replies: 32
» Views: 380
ESP32 S3 set up issue
Forum: Extender module
Last Post: admin
6 hours ago
» Replies: 10
» Views: 57
A32 Pro ESPHome yaml incl...
Forum: KC868-A32/A32 Pro
Last Post: admin
6 hours ago
» Replies: 16
» Views: 175
KC868-A8 Schematic
Forum: KC868-A8
Last Post: admin
6 hours ago
» Replies: 7
» Views: 41
change wake up name
Forum: KinCony AS
Last Post: admin
6 hours ago
» Replies: 11
» Views: 65
"KCS" v2.2.8 firmware BIN...
Forum: "KCS" firmware system
Last Post: admin
6 hours ago
» Replies: 2
» Views: 158
Dimensions/drawings of bo...
Forum: Schematic and diagram
Last Post: admin
6 hours ago
» Replies: 1
» Views: 18
how to use AS ESP32-S3 vo...
Forum: KinCony AS
Last Post: admin
12-16-2024, 10:55 PM
» Replies: 12
» Views: 446
Problem with IFTTT automa...
Forum: "KCS" firmware system
Last Post: admin
12-16-2024, 10:53 PM
» Replies: 5
» Views: 34
M16 SHT31 sensor disconne...
Forum: KC868-M16 / M1 / MB / M30
Last Post: bsarra
12-16-2024, 08:36 PM
» Replies: 4
» Views: 38

  temperature/humidity modbus module
Posted by: mod5 - 11-02-2024, 06:01 AM - Forum: Suggestions and feedback on KinCony's products - Replies (3)

i would like to suggest a module like https://shop.kincony.com/products/rs485-...e-by-sht30
It should be modbus, becouse 1wire couses problems for longer distances
For european clients, we use 60mm round flush-mounted box and that product cant fit  there.
Mabye you can just did some KC868-HAv2 additional functionality?

Print this item

  esphome - devices connected without ha
Posted by: mod5 - 11-01-2024, 08:52 PM - Forum: Development - Replies (3)

Hi,

Is this possible to control GPIOS between two boards?
I have A32M and A64 and i want to do something like: input1(Board A) -> output1(Board B)
I want to use esphome (i need it for the project) and i dont want to use HA.
Can i do that?


P.S. 
Great work with your boards !

Print this item

Wink "KCS" v3.0.1 firmware for A32 Pro controller
Posted by: admin - 10-31-2024, 07:17 AM - Forum: "KCS" firmware system - No Replies

v3.0.1 improvement:

1. fixed bug with ethernet STATIC IP mode.
2. support KinCony NEW Cloud server, remote control and monitor A32 Pro Controller by mobile phone and computer (PC & MAC) via internet by web browser.
3. support "auto discovery" for home assistant by MQTT with zero code config.
4. support Apple HomeKit directly to use.
   
   
firmware donwload:
.zip   KCS_A32PRO_V3.0.1.zip (Size: 999.11 KB / Downloads: 71)

Print this item

  wired temperature and humidity sensor pin define
Posted by: admin - 10-31-2024, 01:58 AM - Forum: Extender module - No Replies

   
RED: VCC 3.3--5v
BLACK: GND
YELLOW: humidity output
WHITE: temperature output

Print this item

  wired gas sensor pin define
Posted by: admin - 10-31-2024, 01:52 AM - Forum: Extender module - No Replies

   
1: +12V
2: GND
3-4: relay output

Print this item

  A64 error
Posted by: arksop - 10-30-2024, 05:52 PM - Forum: KC868-A64 - Replies (1)

I have implemented a kc-868-a64 and AIO in my home. 

AIO is working perfectly but A64 is making problem.

when i turn relay manually  it show on A64 that is turned on. When i turn it on A64 via KCS its not turning on relays and turn all output lights on A64.

i was trying v2 software and v1. 

the same error.


Can you please help me with this?


below video for visualisation of problem.


Print this item

  A16 kcs v2.2.4 delay sometime not working
Posted by: stanchiam - 10-30-2024, 04:21 AM - Forum: "KCS" firmware system - Replies (1)

Hi,

I had set the output with type delay(30) for all output, sometimes some relay will not turn off after the 3 secs and will stay on.
You can try setup as above, then turn on one by one for all relays, some relay/output will stay on after 3 secs.
If you do it slowly, it is ok, if you turn on the output one by one fast example relay 1-16, some output will stay on

Please help to look into this. Thank you.

Print this item

Photo KC868-A16S and ds18b20
Posted by: gottlieb78 - 10-30-2024, 01:32 AM - Forum: KC868-A16S - Replies (1)

Hi

I have the KC868-A16S board and I have it setup up in ESPHome and linked to HA.

I´m having trouble connecting a one-wire ds18b20 temperature probe to the board and get a readout.

This is my yaml:

Code:
esphome:
  name: kincony
  friendly_name: Kincony
  platform: ESP32
  board: esp32dev

#esp32:
#  board: esp32dev
#  framework:
#    type: arduino

# Enable logging
logger:
  level: DEBUG
# Enable Home Assistant API
api:
  encryption:
    key:




 
# Example configuration entry for ESP32
i2c:
  sda: 4
  scl: 5
  scan: true
  id: bus_a


# Example configuration entry
ethernet:
  type: LAN8720
  mdc_pin: GPIO23
  mdio_pin: GPIO18
  clk_mode: GPIO17_OUT
  phy_addr: 0

  # Optional manual IP
#   manual_ip:
#    static_ip: 192.168.1.199
#    gateway: 192.168.1.1
#    subnet: 255.255.255.0 

# Example configuration entry

one_wire:
  - platform: gpio
    pin: GPIO14

# Individual sensors
sensor:
  - platform: dallas_temp
    #address:
    name: Temperature1
    update_interval: 5s

external_components:
  - source:
      type: git
      url: https://github.com/ssieb/esphome
      ref: onewire
    components: [ gpio ]
    refresh: 1min

# Example configuration entry
pcf8574:
  - id: 'pcf8574_hub_out_1'  # for output channel 1-8
    address: 0x24

  - id: 'pcf8574_hub_out_2'  # for output channel 9-16
    address: 0x25

  - id: 'pcf8574_hub_in_1'  # for input channel 1-8
    address: 0x22

  - id: 'pcf8574_hub_in_2'  # for input channel 9-16
    address: 0x23

# Individual outputs
switch:
  - platform: gpio
    name: "a16s-output1"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 0
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "a16s-output2"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 1
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a16s-output3"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 2
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a16s-output4"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 3
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a16s-output5"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 4
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a16s-output6"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 5
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "a16s-output7"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 6
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a16s-output8"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 7
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a16s-output9"
    pin:
      pcf8574: pcf8574_hub_out_2
      number: 0
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "a16s-output10"
    pin:
      pcf8574: pcf8574_hub_out_2
      number: 1
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "a16s-output11"
    pin:
      pcf8574: pcf8574_hub_out_2
      number: 2
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a16s-output12"
    pin:
      pcf8574: pcf8574_hub_out_2
      number: 3
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a16s-output13"
    pin:
      pcf8574: pcf8574_hub_out_2
      number: 4
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a16s-output14"
    pin:
      pcf8574: pcf8574_hub_out_2
      number: 5
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a16s-output15"
    pin:
      pcf8574: pcf8574_hub_out_2
      number: 6
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a16s-output16"
    pin:
      pcf8574: pcf8574_hub_out_2
      number: 7
      mode: OUTPUT
      inverted: true
     
binary_sensor:
  - platform: gpio
    name: "a16s-input1"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 0
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input2"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 1
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input3"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 2
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input4"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 3
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input5"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 4
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input6"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 5
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input7"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 6
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input8"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 7
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input9"
    pin:
      pcf8574: pcf8574_hub_in_2
      number: 0
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input10"
    pin:
      pcf8574: pcf8574_hub_in_2
      number: 1
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input11"
    pin:
      pcf8574: pcf8574_hub_in_2
      number: 2
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input12"
    pin:
      pcf8574: pcf8574_hub_in_2
      number: 3
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input13"
    pin:
      pcf8574: pcf8574_hub_in_2
      number: 4
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input14"
    pin:
      pcf8574: pcf8574_hub_in_2
      number: 5
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input15"
    pin:
      pcf8574: pcf8574_hub_in_2
      number: 6
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input16"
    pin:
      pcf8574: pcf8574_hub_in_2
      number: 7
      mode: INPUT
      inverted: true



Attached Files Thumbnail(s)
   
Print this item

  A128 and B32Pro
Posted by: kkabuu - 10-29-2024, 05:10 PM - Forum: KC868-A series and Uair Smart Controller - Replies (5)

Hello. I also ask for help.
I have 1 piece of A128 and B32Pro with AK.
I want to make one of these modules keep the output on as long as I press an input?
I also tried with (KCS firmware v2 and v1)
can i do this with these modules?

Print this item

  Issue with Device Connectivity – KC868-A4S Relay Controller
Posted by: Bhumijo - 10-29-2024, 06:14 AM - Forum: KC868-A4S - Replies (1)

So far, I've completed this part. Here’s the link, but it’s still not working: [Link] . Please help me for the solution . My device name is : 4 channel GSM relay esp32 board – KC868-A4S , link of the product :: https://www.kincony.com/4-channel-gsm-re...board.html

Print this item