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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 6,575
» Latest member: e.montolivo@gmail.com
» Forum threads: 2,918
» Forum posts: 15,487

Full Statistics

Online Users
There are currently 23 online users.
» 0 Member(s) | 6 Guest(s)
Amazonbot, Crawl, DotBot, Google, PetalBot, WordPress/, bot, owler

Latest Threads
M30 negative power
Forum: KC868-M16 / M1 / MB / M30
Last Post: admin
51 minutes ago
» Replies: 1
» Views: 1
KC868-M16v2 configure yam...
Forum: KC868-M16 / M1 / MB / M30
Last Post: admin
53 minutes ago
» Replies: 44
» Views: 5,310
Simulating RF Remote Butt...
Forum: KC868-A16
Last Post: admin
54 minutes ago
» Replies: 1
» Views: 1
Fatal error while uploadi...
Forum: KC868-A16
Last Post: admin
56 minutes ago
» Replies: 6
» Views: 4,912
ESP32S3 Chip efuse check ...
Forum: "KCS" v3 firmware
Last Post: admin
57 minutes ago
» Replies: 3
» Views: 9
KC868-A16 analog input
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
57 minutes ago
» Replies: 1
» Views: 39
A32pro RGB led strip
Forum: DIY Project
Last Post: admin
1 hour ago
» Replies: 1
» Views: 7
KC868-A16 rev. 1.6 firmwa...
Forum: "KCS" v2 firmware system
Last Post: jollyroger
6 hours ago
» Replies: 2
» Views: 20
M30 negative power
Forum: KC868-M16 / M1 / MB / M30
Last Post: Linus68
Yesterday, 11:35 AM
» Replies: 0
» Views: 1
BM16 Problems
Forum: B16M
Last Post: admin
Yesterday, 08:25 AM
» Replies: 1
» Views: 7

  Page kincony problem
Posted by: balcerseb - 02-14-2025, 03:34 PM - Forum: KC868-A16 - Replies (1)

Gentlemen in the manual for the KC868 A16 after logging into the software the input web page in the manual looks like this (see first picture) and I am missing the ON, OFF TOGLLE table how to fix this anyone has an idea because you can't set the control

   
   

Print this item

  KCS v3 for AG8 IR protocol
Posted by: admin - 02-14-2025, 05:27 AM - Forum: KC868-AG / AG Pro / AG8 - Replies (4)

UDP Server / TCP Server / Loxone / RS232:

Learn IR (MAX support 192 IR signals):

send:  RELAY-IR-LEARN-255,1,2    // begin learn IR signal ID=1, send by IR tube-2
receive: RELAY-IR-LEARN-255,1,OK  // success
receive: RELAY-IR-LEARN-255,1,TIMEOUT  // timeout

send: RELAY-IR-LEARN-255,200  // if send IR exceeding the maximum IR ID(MAX=192)
receive: RELAY-IR-LEARN-255,200,ERROR  // error

Send IR:

send: RELAY-IR-RUN-255,1  // send IR signal ID=1
receive: RELAY-IR-RUN-255,1,OK

Delete IR:

send: RELAY-IR-DEL-255,1  // delete learned IR signal ID=1
receive: RELAY-IR-DEL-255,1,OK
---------------------------------------------------------------
UDP Client / TCP Client / Loxone / RS232:

IR triggered and auto feedback: (ONLY use for NEC and RC5 IR code)

RELAY-GET_IR-255,1,1,OK  // trigger
RELAY-GET_IR-255,1,0,OK  // not trigger

   
   
---------------------------------------------------------------

MQTT:

Learn IR:  // begin learn IR signal ID=1, send by IR tube-2
payload:
{
  "learn_ir": {
    "value": 1,
    "tx_channel": 2
  }
}

Delete IR:  // delete learned IR signal ID=1

payload:
{
  "run_ir": {
    "value": 1
  }
}

IR triggered and auto feedback:  // trigger when value=1  (ONLY use for NEC and RC5 IR code)

payload:

// trigger begin
{
  "ir1": {
    "value": 1
  }
}

// trigger end
{
  "ir1": {
    "value": 0
  }
}
   
   
   
---------------------------------------------------------------
RS485 Modbus

// 01: Address 
// 08: Function code - Learn IR
// 00 05: Register address, 05 means ID=6 because ID begin with 0
// 00 04: Send IR tube, values range from 1-8. 04 means the 4th channel 
// F1 C9: CRC 
[Tx] 01 08 00 05 00 04 F1 C9 

// 01: Address 
// 08: Function code - Learn IR
// 02: Data length 
// 00 05: Data value, corresponding to the register address when transmitting 
// 7A 63: CRC 
[Rx] 01 08 02 00 05 7A 63 

---------------------------

// 01: Address 
// 07: Function code - Send IR
// 00 02: Register address, send IR at index 2, which ID=3 
// 00 01: Register count, fixed value 1, only one infrared can be controlled at a time 
// D4 0A: CRC 
[Tx] 01 07 00 02 00 01 D4 0A 

// 01: Address 
// 07: Function code - Send IR
// 02: Data length 
// 00 02: Data value, corresponding to the register address when transmitting 
// 38 B5: CRC 
[Rx] 01 07 02 00 02 38 B5 

---------------------------

// 01: Address 
// 09: Function code - Delete IR
// 00 07: Register address, 07 means ID=8 
// 00 01: Register count, fixed value 1, only one infrared can be deleted at a time 
// AD CA: CRC 
[Tx][11:32:00.669] 01 09 00 07 00 01 AD CA 

// 01: Address 
// 09: Function code - Delete IR
// 02: Data length 
// 00 07: Data value, corresponding to the register address when transmitting 
// FA 5E: CRC 
[Rx][11:32:01.959] 01 09 02 00 07 FA 5E 

   
   
   

Print this item

  KC 868 Server
Posted by: ezra@riverviewwoodproducts.com - 02-13-2025, 06:02 PM - Forum: News - Replies (1)

Hello,

 KC 868 Server running Home Assistant. 
 
 
>Can Anyone help me figure out what I need to do so that my Analog sensors update by themselves on my home assistant dashboard Gauge Card.
 
 
 
>It updates only when I turn on an off a output signal. But I want it to just update the sensor by itself every 5 seconds or so. I have a 4-20 ma water level sensor connected to it.

can this be done by a way of pining the server somehow? i haven't had luck with that either.

Print this item

  RS485 on ESPhome
Posted by: HA_user - 02-12-2025, 05:14 PM - Forum: KC868-A16 - Replies (2)

Hello, 
I have been trying to start modbus communication between KinCony A16 and Eastron SDM630 via rs485 using espHome for some time, according to the documentation the registers are identical to KinCony Energy Meter RS485 Modbus RTU Monitor
Log shows me: [17:53:08][D][modbus_controller:040]: Modbus command to device=1 register=0x64 no response received - removed from send queue
I would like to ask if I have something wrong in the .yaml file?

esphome:
  name: md01-kc868-a16-gar
  friendly_name: md01-kc868-a16-GAR
esp32:
  board: esp32dev
  framework:
    type: arduino
# Enable logging
logger:
# Enable Home Assistant API
api:
  encryption:
    key: "************************************"
###################################
ota:
  - platform: esphome
    password: "*********************************"
wifi:
  ssid: !secret wifi_ssid
  password: !secret wifi_password
# Optional manual IP
  manual_ip:
    static_ip: 192.168.88.21
    gateway: 192.168.88.1
    subnet: 255.255.255.0 
     
####################################
uart:
  id: mod_bus
  tx_pin: 13
  rx_pin: 16
  baud_rate: 9600
  stop_bits: 1
  parity: EVEN
modbus:
  id: modbus1
  uart_id: mod_bus
modbus_controller:
  - id: a24
    address: 0x01
    modbus_id: modbus1
    setup_priority: -10
    update_interval: 5s 
####################################
sensor:
  - platform: modbus_controller
    modbus_controller_id: a24
    name: "Voltage"
    id: modbus_voltage
    register_type: holding
    address: 0x64
    unit_of_measurement: "V"
    value_type: FP32
    accuracy_decimals: 2

Print this item

  Recording of energy usage data on M30 to MicroSD
Posted by: sc00bs - 02-12-2025, 06:15 AM - Forum: KC868-M16 / M1 / MB / M30 - Replies (5)

Hi Everyone

Thank you to Kincony for the great product, I have a few questions, if anyone can help me please? :-) 

Any suggestions as to what is the best way to set up the M30 for recording usage data to the microsd as a standalone unit? 
There will be no internet access for the unit while it is monitoring the energy usage and I would like to be able to record the usage with time stamps and be able to review it once the installation is complete. 
I have various sizes of CT Clamps (30,60 & 100A) so need to be able to specify the size of the clamp installed per port and would also like a WebUi to check that everything is working and set times etc if necessary. 

I have been investigating using ESPHome but assume that I could use Arduino IDE as well to do this, what would you recommend and do you have any sample code I could use?

I have been struggling to work out the pinouts for the Microsd card, can you tell me if these are the correct pinouts? 

sd_card:
  cs_pin: GPIO5  # Adjust CS pin based on your hardware
  spi_id: sd_spi
  spi:
    clk_pin: GPIO18
    mosi_pin: GPIO23
    miso_pin: GPIO19

I have attached a copy of the ESPZHome YAML code I have been working on. 
All suggestions welcome.



Attached Files
.zip   M30 ESPHome Firmware with saving to MicroSD.zip (Size: 3.19 KB / Downloads: 41)
Print this item

  Smart Home Setup KC868-E16V2 + KC868-A64 + KC868-AP
Posted by: korvin - 02-11-2025, 10:34 PM - Forum: KC868-A64 - Replies (5)

Hi all.

I'm designing my Smart Home setup and want your suggestion if my idea is the most optimal one.

Few words about what I want to achieve. I have 3-phases 15kWt power supply in my home. I want to build everything around Home Assistant, use Ethernet and Zigbee for connection. I don't mind using ESPHome, Tamosha with Home Assistant. 

I need to automate 23 light switches (please note I use retro-style mechanical switches like this one https://vi.aliexpress.com/item/1005005429652367.html, not the impulse-one!), a few curtains, a fan, 9 LED strips 22 meters in total length, floor heating system (8 zones), a few water valves (up to 5). It would be great to have power monitoring for the entire home and for individual power-hungry devices.

So I chose the following smart devices:
1. One 64-channel controller module https://www.aliexpress.com/item/1005004281348902.html
2. Three 15-channel relay modules (https://www.aliexpress.com/item/1005005068332790.html) - one for floor heating and two for light switches and everything else
3. One 150W 12V power supply module to power all these smart devices https://www.aliexpress.com/item/1005002955358360.html
4. Dimmer https://www.aliexpress.com/item/1005005107986808.html to which I want to connect LED directly without drivers - all my LEDs are single-color, so 16 channels should be enough
5. Power meters like this one: https://www.aliexpress.com/item/1005005798935600.html. One 3phase for the entire home and a couple of 1phase for individual devices.

I chose a separate relay and controller modules because they allow changing individual relays if needed.

So are these devices the best for my task?
In the dimmer powerful enough to handle all those LEDs?
Do you have some combined relay+controller modules that allow changing individual relays, NO+NC connections and power monitoring?
Any other suggestions? 

Thank you in advance

Print this item

  I2C connector type/part number
Posted by: cibula - 02-11-2025, 08:55 PM - Forum: KC868-A16 - Replies (2)

Hello,

Can someone please provide part number of the connector that is assembled for I2C extensions on A16 boards, the white 4 pin one in the middle?
It looks like it might be 2.54mm pitch.
Need it for a cable but was not able to find one online that looks like it would fit.

Thank you!

Print this item

  How to measure current using Analog Inputs on KC868-A16?
Posted by: Brouk - 02-11-2025, 06:34 PM - Forum: KC868-A16 - Replies (3)

dear admin,
I need to measure current on one phase (230V AC). I would like to use Analog Inputs on the A16 module for this (there are 4 inputs in total). I bought a CT clamp "SCT-013 5A=1V". I tested it and at 5A on the measured phase it has 1V AC at the output.
   
Can you advise me how to connect it correctly and how to configure it in ESPHome (in Home Assistant)? Now I have the inputs configured like this...

Code:
sensor:
  - platform: adc
    pin: 36
    name: "analogInput1"
    update_interval: 10s
    attenuation: 12db

  - platform: adc
    pin: 34
    name: "analogInput2"
    update_interval: 10s
    attenuation: 12db

  - platform: adc
    pin: 35
    name: "analogInput3"
    update_interval: 10s
    attenuation: 12db

  - platform: adc
    pin: 39
    name: "analogInput4"
    update_interval: 10s
    attenuation: 12db

...but the values are 0.14V, which is nonsense:

   

Thanks in advance

Print this item

  adding rs485 device to B16M
Posted by: beon intelligent - 02-10-2025, 11:50 PM - Forum: B16M - Replies (2)

how can i connect this sensor to use rs485 on a B16m



Attached Files Thumbnail(s)
           
Print this item

  Issue with KC868-H32B Pro Relays Stuck ON – Need Help
Posted by: Sentenza - 02-10-2025, 03:33 PM - Forum: News - Replies (9)

Issue with KC868-H32B Pro Relays Stuck ON – Need Help
Hi, I need some help with my KC868-H32B Pro relay board.
I connected the L (Live) to the left terminal of Relay 1, and the right terminal of Relay 1 to a 25W LED bar (0.15A current draw). Then, I connected N (Neutral) directly to the other wire of the LED bar.
When I turned Relay 1 ON, the LED bar lit up as expected. However, after that, the relay never switched OFF again, and now Relay 1 no longer clicks. On the Kincony web interface, the relay status updates (ON/OFF), but there is no physical "click" anymore.
I then repeated the exact same setup on Relay 2, and the same thing happened – Relay 2 is now stuck as well.
Questions:

  1. What happened, and why did both relays stop working?
  2. How can I fix this issue?
  3. Is there a way to reset the relays or check if they are damaged?
Any advice would be greatly appreciated! Thanks.

Print this item