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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,378
» Latest member: xxteh
» Forum threads: 2,577
» Forum posts: 13,333

Full Statistics

Online Users
There are currently 47 online users.
» 1 Member(s) | 31 Guest(s)
Amazonbot, Bing, Bytespider, Crawl, Google, PetalBot, Yandex, bot

Latest Threads
change wake up name
Forum: KinCony AS
Last Post: gal
1 hour ago
» Replies: 16
» Views: 116
H32L - home assistant
Forum: KC868-HxB series Smart Controller
Last Post: admin
2 hours ago
» Replies: 3
» Views: 10
KC868-AG RF - sending rep...
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
6 hours ago
» Replies: 5
» Views: 155
Kc868 a8 in workshop
Forum: KC868-A8
Last Post: admin
8 hours ago
» Replies: 1
» Views: 11
KC868-A2 configure yaml f...
Forum: KC868-A2
Last Post: admin
9 hours ago
» Replies: 16
» Views: 7,693
One input switch - turn o...
Forum: KinCony AS
Last Post: admin
9 hours ago
» Replies: 1
» Views: 2
KC868-A8 Switch
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
9 hours ago
» Replies: 3
» Views: 37
Problem with IFTTT automa...
Forum: "KCS" firmware system
Last Post: Poczwara13
11 hours ago
» Replies: 7
» Views: 71
how to use AS ESP32-S3 vo...
Forum: KinCony AS
Last Post: biofects
Yesterday, 08:51 PM
» Replies: 14
» Views: 481
How can I power multiple ...
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
Yesterday, 09:03 AM
» Replies: 12
» Views: 140

  IR LED extention cable
Posted by: gilad - 11-07-2023, 07:34 AM - Forum: KC868-A4 - Replies (5)

seeking to have the IR LED extended to 2 meter cable. 
is it going to be supported ?
VCC
DATA
GND

Print this item

  how to use switch button by esphome for home assistant
Posted by: admin - 11-07-2023, 12:25 AM - Forum: Getting Started with ESPHome and Home Assistant - No Replies

Print this item

  how to use gpio binary sensor by esphome for home assistant
Posted by: admin - 11-07-2023, 12:23 AM - Forum: Getting Started with ESPHome and Home Assistant - No Replies

Print this item

  KC868_A8 relay not vorking
Posted by: Aiot - 11-06-2023, 06:44 PM - Forum: "KCS" firmware system - Replies (1)

I have this board and I install kcs v2 firmware on the board but relays not working. Any idea?

Board

Print this item

  BMP180/280
Posted by: greg-79 - 11-06-2023, 01:20 PM - Forum: KC868-A4 - Replies (2)

Hello! Good afternoon! How can I add a BMP180/280 pressure and temperature sensor to the KS868-A4 board?

Print this item

  send pushover notification from input pin change
Posted by: jeremy80 - 11-05-2023, 04:20 PM - Forum: "KCS" firmware system - Replies (3)

Hello,

I am trying to send pushover notification from KCS firmware input pin change.

In protocol custom we can make HTTP post but what to fill in field Message and URL so it work with pushover API that is documented below

https://pushover.net/api

Does anyone had already a similar integration to send notification on input change ?



Attached Files Thumbnail(s)
   
Print this item

  esphome yaml file with ADC analog input 0-5v and 4-20mA for KC868-A8S/A8Sv2
Posted by: admin - 11-05-2023, 03:00 AM - Forum: KC868-A8S - No Replies

Code:
esphome:
  name: a8sv2
  platform: ESP32
  board: esp32dev
 
# 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

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

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

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

  - platform: gpio
    name: "a8s_light2"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 1
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a8s_light3"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 2
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a8s_light4"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 3
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a8s_light5"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 4
      mode: OUTPUT
      inverted: true
     
     
  - platform: gpio
    name: "a8s_light6"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 5
      mode: OUTPUT
      inverted: true
     

  - platform: gpio
    name: "a8s_light7"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 6
      mode: OUTPUT
      inverted: true

     
  - platform: gpio
    name: "a8s_light8"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 7
      mode: OUTPUT
      inverted: true

     
binary_sensor:
  - platform: gpio
    name: "a8s_input1"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 0
      mode: INPUT
      inverted: true

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

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

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

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

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

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

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

sensor:
  - platform: adc
    pin: 36
    name: "A8S A1 Voltage"
    update_interval: 5s
    attenuation: 11db
    filters:
      - lambda:
          if (x >= 3.11) {
            return x * 1.60256;
          } else if (x <= 0.15) {
            return 0;
          } else {
            return x * 1.51;
          }
  - platform: adc
    pin: 34
    name: "A8S A2 Voltage"
    update_interval: 5s
    attenuation: 11db
    filters:
      # - multiply: 1.51515
      - lambda:
          if (x >= 3.11) {
            return x * 1.60256;
          } else if (x <= 0.15) {
            return 0;
          } else {
            return x * 1.51;
          }
  - platform: adc
    pin: 35
    name: "A8S A3 Current"
    update_interval: 5s
    unit_of_measurement: mA
    attenuation: 11db
    filters:
      - multiply: 6.66666666
  - platform: adc
    pin: 39
    name: "A8S A4 Current"
    update_interval: 5s
    unit_of_measurement: mA
    attenuation: 11db
    filters:
      - multiply: 6.66666666

# Enable logging
logger:

# Enable Home Assistant API
api:
yaml file download: 
.txt   KC868-A8S-ha-config-ADC_voltage_current.txt (Size: 3.98 KB / Downloads: 335)

Print this item

  how to use gpio relay switch by esphome for home assistant
Posted by: admin - 11-05-2023, 02:09 AM - Forum: Getting Started with ESPHome and Home Assistant - No Replies

Print this item

  Future M16 ideas
Posted by: Schmick - 11-04-2023, 10:13 PM - Forum: KC868-M16 / M1 / MB / M30 - Replies (1)

Great work on the M16v2!  Heart

Some thoughts for a future version. Please don't take as criticism!

Could the device be split in two for installation in a surface mount distribution board? I'm thinking that the clamp inputs and voltage inputs could maybe be connected to a DIN module with same dimensions as standard 3 or 4 pole breaker, then using an interface cable, connect that to another smaller low voltage module housing the ESP32, networking and other components.

If the barrel jacks are removed from the clamps, could probably shrink the connections to 2x 16x2.54mm terminal blocks. By splitting the device in two, all the higher voltage wiring and clamp cables could then be neatly concealed and protected against accidental contact. Going even further, if the ADC was able to be done within that module, could maybe even just have the module expose an I2C interface on the front face allowing for lots of flexibility on the low voltage side in terms of how the data is exported.

Print this item

  Micropython
Posted by: ghazidrira - 11-03-2023, 09:04 AM - Forum: KC868-A6 - Replies (1)

Can I program the KC868-A6 PLC with micropython?

Print this item