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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,374
» Latest member: zeth
» Forum threads: 2,574
» Forum posts: 13,315

Full Statistics

Online Users
There are currently 49 online users.
» 0 Member(s) | 31 Guest(s)
Bing, Bytespider, Crawl, Google, PetalBot, Semrush, bot, owler

Latest Threads
KC868-A2 configure yaml f...
Forum: KC868-A2
Last Post: elemarek
9 hours ago
» Replies: 15
» Views: 7,686
How can I power multiple ...
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
10 hours ago
» Replies: 12
» Views: 134
how to use AS ESP32-S3 vo...
Forum: KinCony AS
Last Post: biofects
Today, 03:07 AM
» Replies: 13
» Views: 469
change wake up name
Forum: KinCony AS
Last Post: admin
Today, 02:10 AM
» Replies: 13
» Views: 104
Problem with IFTTT automa...
Forum: "KCS" firmware system
Last Post: admin
Yesterday, 11:41 PM
» Replies: 6
» Views: 51
A32 Pro ESPHome yaml incl...
Forum: KC868-A32/A32 Pro
Last Post: admin
Yesterday, 11:15 PM
» Replies: 18
» Views: 191
KC868-A2 ESP32 I/O pin de...
Forum: KC868-A2
Last Post: admin
Yesterday, 11:12 PM
» Replies: 8
» Views: 2,272
Need help with configurat...
Forum: KC868-HxB series Smart Controller
Last Post: admin
Yesterday, 04:32 AM
» Replies: 32
» Views: 399
ESP32 S3 set up issue
Forum: Extender module
Last Post: admin
12-17-2024, 11:43 PM
» Replies: 10
» Views: 73
KC868-A8 Schematic
Forum: KC868-A8
Last Post: admin
12-17-2024, 11:40 PM
» Replies: 7
» Views: 55

  H32B Pro dead switches?
Posted by: lulu01 - 05-12-2024, 10:14 AM - Forum: KC868-HxB series Smart Controller - Replies (11)

Hello,

I just started using two H32B Pro. After a few days, on one of the boards, switches 13 and 14 are dead: when I open/close them in the web interface, there is no clicking sound from the board... and they remain closed. The small red LED light is ok, it turns on when I activate the switch. Also, all the other switches are ok.

I only used this for LED lights of 220V/20W, so it should not be an issue.

I there a way to reset the board? I have already tried to unpower it and power it back

Print this item

  sever 16
Posted by: abc123 - 05-12-2024, 10:04 AM - Forum: KinCony Server-Mini / Server-16 Raspberry Pi4 relay module - Replies (4)

我在TF卡中插入网线下载了homeassistant但是没有找到homeassistant初始页面我想用sever16配置网络的modebus设备通过485通道连接希望能得到支持。谢谢            

Print this item

  sever 16
Posted by: abc123 - 05-12-2024, 09:53 AM - Forum: KinCony Server-Mini / Server-16 Raspberry Pi4 relay module - Replies (3)

我有一个sever 16  我在TF卡内下载了http://homeassistant/  我想知道怎么进入主页面  配置485总线下的设备



Attached Files Thumbnail(s)
       
Print this item

  KC868-A4
Posted by: Negro2006 - 05-10-2024, 07:17 PM - Forum: Customer project example - Replies (4)

hola. Adquiri una placa Kincony KC868-A4. Estoy usando el Firmware KSC. En la seccion de IR recibe correctamente el code del control remoto pero no logro usarlo en IFTT para activar un rele de salida.. No lo encuentra como entrada. Que estoy haciendo mal ? Gracias

Print this item

  KinCony ESP32-S3 Core Board released
Posted by: admin - 05-10-2024, 11:12 AM - Forum: News - Replies (4)

We have designed ESP32-S3 Core Board - KinCony S3. it's mini PCB, support install by DIN RAIL. it use ESP32-S3-WROOM-1U N16R8 chip. small PCB with RS485, I2C bus, 1-wire, analog input ports. analog input port can use for VOLTAGE / CURRENT signal set by jumper. It have ethernet port, also have SIM7600 4G module and RF 433MHz reciever interface. It can use for smart home IoT project use by home assistant, you can config ymal by ESPHome. S3 also support arduino IDE / MicroPython / ESP-IDF development tool.
[Image: S3-1.jpg]
PCB size: 80mm*65mm
Power supply: DC 9-24V
[Image: S3-schematic.jpg]

Print this item

  KinCony ESP32-S3 Core Board ESPHome yaml for home assistant
Posted by: admin - 05-10-2024, 10:49 AM - Forum: Extender module - Replies (4)

Code:
esphome:
  name: s3
  friendly_name: s3
  platformio_options:
    board_build.flash_mode: dio

esp32:
  board: esp32-s3-devkitc-1
  framework:
    type: esp-idf

# Enable logging
logger:
  hardware_uart: USB_SERIAL_JTAG

ethernet:
  type: W5500
  clk_pin: GPIO43
  mosi_pin: GPIO44
  miso_pin: GPIO42
  cs_pin: GPIO41
  interrupt_pin: GPIO2
  reset_pin: GPIO1

uart:
  - id: uart_485
    baud_rate: 9600
    debug:
      direction: BOTH
      dummy_receiver: true
      after:
        timeout: 10ms
    tx_pin: 16
    rx_pin: 15

  - id: uart_sim7600
    baud_rate: 115200
    debug:
      direction: BOTH
      dummy_receiver: true
      after:
        timeout: 10ms
      sequence:
        - lambda: UARTDebug::log_string(direction, bytes);
    tx_pin: 18
    rx_pin: 17

switch:
  - platform: uart
    uart_id: uart_485
    name: "RS485 Button"
    data: [0x11, 0x22, 0x33, 0x44, 0x55]

  - platform: uart
    uart_id: uart_sim7600
    name: "UART 4G"
    data: "AT+CGSN\r\n" # read 4G SIM7600 ID

binary_sensor:

  - platform: gpio
    name: "S3 TMP1"
    pin:
      number: 8
      inverted: true

  - platform: gpio
    name: "S3 TMP2"
    pin:
      number: 40
      inverted: true

  - platform: gpio
    name: "S3 DL"
    pin:
      number: 0
      inverted: true

  - platform: gpio
    name: "S3 SDA"
    pin:
      number: 39
      inverted: true
      mode:
        input: true
        pullup: true

  - platform: gpio
    name: "S3 SCL"
    pin:
      number: 38
      inverted: true
      mode:
        input: true
        pullup: true

  - platform: gpio
    name: "S3 IO10"
    pin:
      number: 10
      inverted: true
      mode:
        input: true
        pullup: true

  - platform: gpio
    name: "S3 IO11"
    pin:
      number: 11
      inverted: true
      mode:
        input: true
        pullup: true

  - platform: gpio
    name: "S3 IO12"
    pin:
      number: 12
      inverted: true
      mode:
        input: true
        pullup: true

  - platform: gpio
    name: "S3 IO13"
    pin:
      number: 13
      inverted: true
      mode:
        input: true
        pullup: true

  - platform: gpio
    name: "S3 IO14"
    pin:
      number: 14
      inverted: true
      mode:
        input: true
        pullup: true

  - platform: gpio
    name: "S3 IO21"
    pin:
      number: 21
      inverted: true
      mode:
        input: true
        pullup: true

  - platform: gpio
    name: "S3 IO47"
    pin:
      number: 47
      inverted: true
      mode:
        input: true
        pullup: true

  - platform: gpio
    name: "S3 IO48"
    pin:
      number: 48
      inverted: true
      mode:
        input: true
        pullup: true

sensor:

  - platform: adc
    pin: 4
    name: "S3 IO04 Current"
    update_interval: 2s
    unit_of_measurement: V
    attenuation: 11db
    filters:
      - multiply: 5

  - platform: adc
    pin: 5
    name: "S3 IO05 Current"
    update_interval: 2s
    unit_of_measurement: V
    attenuation: 11db
    filters:
      - multiply: 5

  - platform: adc
    pin: 6
    name: "S3 IO06 Current"
    update_interval: 2s
    unit_of_measurement: V
    attenuation: 11db
    filters:
      - multiply: 5

  - platform: adc
    pin: 7
    name: "S3 IO07 Current"
    update_interval: 2s
    unit_of_measurement: V
    attenuation: 11db
    filters:
      - multiply: 5

web_server:
  port: 80
yaml file download: 
.txt   S3-HA.txt (Size: 3.5 KB / Downloads: 188)

Print this item

  KinCony ESP32-S3 Core Board pin defines
Posted by: admin - 05-10-2024, 10:46 AM - Forum: Extender module - No Replies

#define ANALOG_A1  GPIO7
#define ANALOG_A2  GPIO6
#define ANALOG_A3  GPIO5
#define ANALOG_A4  GPIO4

Ethernet (W5500) I/O define:

clk_pin: GPIO43
mosi_pin: GPIO44
miso_pin: GPIO42
cs_pin: GPIO41
interrupt_pin: GPIO2
reset_pin: GPIO1


1-wire(TEM1): GPIO8
1-wire(TEM2): GPIO40

SDA:GPIO39
SCL:GPIO38

RS485:
RXD:GPIO15
TXD:GPIO16

4G module:
RXD:GPIO17
TXD:GPIO18

RF 433MHz receiver: GPIO9

free GPIOs on PCB:
GPIO10
GPIO11
GPIO12
GPIO13
GPIO14
GPIO21
GPIO47
GPIO48

Print this item

  H32B+switch termenal board+Tuya adapter
Posted by: Saif Kitany - 05-10-2024, 08:35 AM - Forum: KC868-HxB series Smart Controller - Replies (3)

I want to control my H32B controller by switch terminal board and Tuya adapter in the same time. I connected these 3 devices with rs232 cable splitter, and then i have no response from either switch terminal board or tuya phone app!

Why is this??

I will add a picture of the rs232 cable splitter I used.



Attached Files Thumbnail(s)
       
Print this item

  KC868-A16S Analog input 4-20mA connection
Posted by: nicolouts - 05-10-2024, 07:48 AM - Forum: KC868-A series and Uair Smart Controller - Replies (4)

Hello,
I have a KC868-A16S device and I want connect 3 Analog sensor on it.
My sensor provide a 4-20mA signal with 24VDC voltage.

So I need to convert one of my signal to 0-5V with 250 ohms resistor and connect to CH1 or CH2
But I want to be sure, if I can connect directly my 4-20mA directly to CH3 and CH4 without damage the ADC of the ESP32.

I know that maximum voltage for ESP32 ADC is 3.3VDC, is there a protecting circuit on KC868-A16S to prevent damage?
What the purpose of LM224 on the drawing?

Thank in advance.

Regards

Nicolouts

Print this item

  Firmware Input
Posted by: Philadam - 05-09-2024, 11:04 PM - Forum: "KCS" firmware system - Replies (7)

What version did the input parameters in V1.0.27 disappear from later versions?



Attached Files Thumbnail(s)
       

Print this item