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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 6,374
» Latest member: oliviahill
» Forum threads: 2,845
» Forum posts: 15,039

Full Statistics

Online Users
There are currently 169 online users.
» 1 Member(s) | 154 Guest(s)
Amazonbot, Bing, Crawl, Google, Internet Archive, PetalBot, WordPress/, Yandex, bot, owler, oliviahill

Latest Threads
[Arduino source code for ...
Forum: KC868-A2
Last Post: powerup
5 hours ago
» Replies: 5
» Views: 1,488
KinCony ESP32-S3 Core Boa...
Forum: Extender module
Last Post: admin
5 hours ago
» Replies: 37
» Views: 1,403
Using 12v on Digital Inpu...
Forum: KC868-A16
Last Post: admin
6 hours ago
» Replies: 13
» Views: 366
[Arduino IDE demo source ...
Forum: KC868-A16
Last Post: admin
6 hours ago
» Replies: 8
» Views: 2,588
Curtain/Window Shade Cont...
Forum: Suggestions and feedback on KinCony's products
Last Post: admin
6 hours ago
» Replies: 1
» Views: 4
Pull up on A8
Forum: KC868-A series and Uair Smart Controller
Last Post: heffneil
9 hours ago
» Replies: 17
» Views: 244
A16: IFTTT Time based act...
Forum: KC868-A16
Last Post: sebfromgermany
Yesterday, 01:20 PM
» Replies: 17
» Views: 164
analog input resolution 3...
Forum: KC868-A16
Last Post: Yosemite
Yesterday, 12:43 PM
» Replies: 15
» Views: 390
KC868-HA-V21 serial port ...
Forum: KC868-HA /HA v2
Last Post: admin
Yesterday, 10:15 AM
» Replies: 8
» Views: 100
Using B16M for driving LE...
Forum: B16M
Last Post: admin
Yesterday, 10:11 AM
» Replies: 3
» Views: 11

  How to wire up float switch and use in ESPHome?
Posted by: Vendril - 08-23-2023, 01:07 PM - Forum: KC868-A8S - Replies (3)

Hi,

Using ESPHOME in Home Assistant.

I have 2 of these float sensor switches. How should I be wiring them up to the board and coding in ESPHome to get an "open/closed"? I thought that they would be an analog device but am not getting any readings.

Or am I using the wrong input?

Code:
##################### Analog Inputs

# 2 x DC 0-5V (AI1, AI2)
# 2 x 4-20mA (AI3, AI4)

# GPIO36      ANALOG_A1
# GPIO39      ANALOG_A2
# GPIO34      ANALOG_A3
# GPIO35      ANALOG_A4


# DC 0-5v - ANALOG_A1
  - platform: gpio
    name: "ANALOG_A1"
    id: ANALOG_A1
    pin:
      number: GPIO36
#      inverted: true


# DC 0-5v - ANALOG_A2
  - platform: gpio
    name: "ANALOG_A2"
    id: ANALOG_A2
    pin:
      number: GPIO39
#      inverted: true

# 4-20mA ANALOG_A3
  - platform: gpio
    name: "ANALOG_A3"
    id: ANALOG_A3
    pin:
      number: GPIO34
#      inverted: true

# 4-20mA ANALOG_A4
  - platform: gpio
    name: "ANALOG_A4"
    id: ANALOG_A4
    pin:
      number: GPIO35
#      inverted: true


Thanks

Print this item

  CT Clamp
Posted by: milan.net - 08-23-2023, 12:02 PM - Forum: KC868-A8 - Replies (3)

Hi, I would like to as for help connecting a SCT013 10A CT clamp to one of the analog inputs.

Thank you for help

Print this item

  Request For Sample Product
Posted by: ivonie.abejo - 08-22-2023, 09:44 AM - Forum: Apply for free sample product - No Replies

Application Condition: B

Hello, My Name is Ivonie Abejo and I am from Philippines, I am a start up company which provides a home security and home automation services in our country. I would like to request a product sample for me to be able to have a on knowledge of the product and offer it to our clients. I would like to have a KC868 product since it is perhaps the best products that i saw from your cahnnel.

Thank you and waiting for your prompt response.

Print this item

  KC868-E8T Factory Original Firmware and arduino source code
Posted by: admin - 08-22-2023, 06:46 AM - Forum: KC868-E8T - Replies (4)

the firmware support use by Tuya app, INPUT trigger OUTPUT and RF remote control 1-8 relay and ALL ON and ALL OFF. (need learn RF signal for every relay)

how to learn RF signal:   
[Image: attachment.php?aid=2714]   
[Image: attachment.php?aid=2897]
firmware BIN file download:

.zip   KC868-E8T_RF20230822.zip (Size: 429.31 KB / Downloads: 336)

arduino IDE source code download:

.zip   KC868-E8T_arduino_Tuya_RF.zip (Size: 8.97 KB / Downloads: 380)

Tuya module arduino library download:

.zip   Tuya_WiFi_MCU_SDK.zip (Size: 55.73 KB / Downloads: 394)

Print this item

  how to add Raspberry Pi GPIO integration to home assistant for SERVER-MINI
Posted by: admin - 08-22-2023, 04:50 AM - Forum: KinCony Server-Mini / Server-16 Raspberry Pi4 relay module - Replies (6)

1. make home assistant SD card for KinCony Server-16.

download  https://www.raspberrypi.com/software/

2. install HACS addon (use by SSH)

https://hacs.xyz/docs/setup/download/

3. install "rpi_gpio" through HACS.

https://github.com/thecode/ha-rpi_gpio

4. config ymal for CM4 GPIOs.

install file edit add-on for HA , then config yaml

-------------------------------------
switch:
  - platform: rpi_gpio
    switches:
      - port: 5
        name: "CM4 relay1"
      - port: 22
        name: "CM4 relay2"
      - port: 17
        name: "CM4 relay3"
      - port: 4
        name: "CM4 relay4"
      - port: 6
        name: "CM4 relay5"
      - port: 13
        name: "CM4 relay6"
      - port: 19
        name: "CM4 relay7"
      - port: 26
        name: "CM4 relay8"
       
binary_sensor:
  - platform: rpi_gpio
    sensors:
      - port: 18
        name: "CM4 IN1"
        invert_logic: true
      - port: 23
        name: "CM4 IN2"
        invert_logic: true
      - port: 24
        name: "CM4 IN3"
        invert_logic: true
      - port: 25
        name: "CM4 IN4"
        invert_logic: true
      - port: 12
        name: "CM4 IN5"
        invert_logic: true
      - port: 16
        name: "CM4 IN6"
        invert_logic: true
      - port: 20
        name: "CM4 IN7"
        invert_logic: true
      - port: 21
        name: "CM4 IN8"
        invert_logic: true

Print this item

  "KCS" v2.1.1 firmware BIN file download
Posted by: admin - 08-22-2023, 02:52 AM - Forum: "KCS" v2 firmware system - Replies (20)

Here is "KCS" firmware for KinCony KC868-A series (ESP32) board.
How to download and use, online guide: https://www.kincony.com/esp32-kcsv2-firmware.html

v2.1.1 improment:
add IFTTT command for KC868-A64 up to 150



Attached Files
.zip   KCS_KC868_A4S_V2.1.1.zip (Size: 796.3 KB / Downloads: 220)
.zip   KCS_KC868_A2_V2.1.1.zip (Size: 785.72 KB / Downloads: 317)
.zip   KCS_KC868_A4_V2.1.1.zip (Size: 775.87 KB / Downloads: 290)
.zip   KCS_KC868_A6_V2.1.1.zip (Size: 771.64 KB / Downloads: 297)
.zip   KCS_KC868_A8_V2.1.1.zip (Size: 779.72 KB / Downloads: 443)
.zip   KCS_KC868_A8M_V2.1.1.zip (Size: 796.04 KB / Downloads: 254)
.zip   KCS_KC868_A8S_V2.1.1.zip (Size: 797.44 KB / Downloads: 351)
.zip   KCS_KC868_A16_V2.1.1.zip (Size: 786.82 KB / Downloads: 315)
.zip   KCS_KC868_A16S_V2.1.1.zip (Size: 797.85 KB / Downloads: 225)
.zip   KCS_KC868_A32_V2.1.1.zip (Size: 780.72 KB / Downloads: 363)
.zip   KCS_KC868_A32M_V2.1.1.zip (Size: 799.15 KB / Downloads: 307)
.zip   KCS_KC868_A64_V2.1.1.zip (Size: 780.73 KB / Downloads: 358)
.zip   KCS_KC868_A128_V2.1.1.zip (Size: 780.6 KB / Downloads: 322)
.zip   KCS_KC868_AG_V2.1.1.zip (Size: 759.45 KB / Downloads: 351)
.zip   KCS_KC868_AI_V2.1.1.zip (Size: 783.23 KB / Downloads: 218)
.zip   KCS_KC868_AIO_V2.1.1.zip (Size: 797.13 KB / Downloads: 266)
.zip   KCS_KC868_AK_V2.1.1.zip (Size: 762.16 KB / Downloads: 222)
.zip   KCS_KC868_AM_V2.1.1.zip (Size: 772.85 KB / Downloads: 310)
.zip   KCS_KC868_AP_V2.1.1.zip (Size: 778.76 KB / Downloads: 232)
.zip   KCS_KC868_ASR_V2.1.1.zip (Size: 750.72 KB / Downloads: 280)
.zip   KCS_KC868_E16S_V2.1.1.zip (Size: 783.25 KB / Downloads: 271)
.zip   KCS_KC868_UAIR_V2.1.1.zip (Size: 762.65 KB / Downloads: 248)
Print this item

  KC868-A8 - question regarding safety shutdown
Posted by: Karle - 08-21-2023, 05:38 PM - Forum: KC868-A series and Uair Smart Controller - Replies (5)

Hi !

I think about buying the KC868-A8 module for controlling my heating system by external signals.

The KC868-A8 board shall be connected via ethernet to my home assistant device which will control the board (switching relais to control the temperature, set heating or cooling mode and so on).

This is clear so far and I think this can be done relatively easily.

What is not clear for me at the moment:

How does the KC868-A8 board react ....

... if home assistant freezes or the ethernet connection is gone ?

...  if there is a power loss and power comes back ?

Does it go always to the state "all relays" off -> which would mean a safe state in my case ?

Is there a way to supervise the board or turn off all relais in case of any failure coming from home assistant ?

Is there a way to control the proper functioning of the board itself respectively the relais ?

With the 8 relais I only want to switch "signals" no "load" -> Are this relais suitable for this purpose ?

For how many switching cycles are the relais designed ?


Thank you for your feedback.

Greets Karl

Print this item

  KC868-E16T Factory Original Firmware added RF remote code
Posted by: admin - 08-21-2023, 02:09 AM - Forum: KC868-E16T - Replies (9)

Here is Factory Original Firmware for KC868-E16T. You can use Tuya mobile phone application directly. it supprt remote control by internet and manual control buttons and on board. Support learn RF signal send control for relay.

firmware BIN file download: 
.zip   E16T-RF-Tuya.zip (Size: 416.47 KB / Downloads: 374)

about ESP flash tool download link and details see here : https://www.kincony.com/esp-module-flash...tools.html
   

arduino source code download:

.zip   E16T-Tuya-RF.zip (Size: 5.6 KB / Downloads: 302)

How does KC868-E16T learn wireless signals see here: https://www.kincony.com/forum/showthread.php?tid=3169

Print this item

  How does KC868-E16T learn wireless signals
Posted by: KinCony Support - 08-21-2023, 02:05 AM - Forum: KC868-E16T - No Replies

Download the following program, you can turn on and turn off the relays by a wireless remoter

.zip   E16T-test-2022_RF_study.zip (Size: 5.88 KB / Downloads: 211)
       

Print this item

Wink easy way to export/import everything from ESP32 - CLONE/BACKUP Tool
Posted by: admin - 08-20-2023, 11:32 AM - Forum: KC868-A series and Uair Smart Controller - Replies (3)

click "dump.bat" to read ESP32 board. it will save file as "firmware.bin".
click "flash.bat" to write any other new ESP32 board by "firmware.bin".
   

.zip   esptool.zip (Size: 30.94 MB / Downloads: 1666)

Print this item