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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 9,007
» Latest member: webmastersgroup
» Forum threads: 3,973
» Forum posts: 20,141

Full Statistics

Online Users
There are currently 27 online users.
» 0 Member(s) | 12 Guest(s)
Amazonbot, Baidu, Bytespider, PetalBot, bot, github.com

Latest Threads
[SOLVED] N10 - no KWH sho...
Forum: N10
Last Post: admin
10 hours ago
» Replies: 7
» Views: 107
B24 Smart Controller Wiri...
Forum: B24
Last Post: admin
Yesterday, 10:12 PM
» Replies: 2
» Views: 81
AIO Hybrid ESP32-S3 IO pi...
Forum: AIO Hybrid
Last Post: H_spadacini
Yesterday, 10:03 AM
» Replies: 3
» Views: 584
T32M issue with Output 1
Forum: DIY Project
Last Post: BarbaraVikuvis
Yesterday, 06:49 AM
» Replies: 4
» Views: 349
RTC DS3231 yaml code
Forum: KC868-A16v3
Last Post: admin
05-05-2026, 01:38 PM
» Replies: 1
» Views: 25
T64M PCB layout CAD file
Forum: Schematic & diagram & Dimensions of KinCony PCB layout CAD file
Last Post: admin
05-05-2026, 08:08 AM
» Replies: 0
» Views: 19
T16M PCB layout CAD file
Forum: Schematic & diagram & Dimensions of KinCony PCB layout CAD file
Last Post: admin
05-05-2026, 08:07 AM
» Replies: 0
» Views: 15
24V Pulse input
Forum: F16
Last Post: admin
05-05-2026, 04:23 AM
» Replies: 3
» Views: 21
Current and Power not add...
Forum: N60
Last Post: admin
05-04-2026, 10:01 PM
» Replies: 9
» Views: 240
F16 relay stopped functio...
Forum: F16
Last Post: admin
05-04-2026, 11:24 AM
» Replies: 7
» Views: 109

  RTC DS3231 yaml code
Posted by: Fred - 05-05-2026, 10:10 AM - Forum: KC868-A16v3 - Replies (1)

Hello,

Do you have any suggestion to use the DS3231 RTC clock through ESPHome on this KC868-a16 v3 board? Do you have any yaml code to suggest?
Thanks a lot,

Best regards,
Fred

Print this item

  T64M PCB layout CAD file
Posted by: admin - 05-05-2026, 08:08 AM - Forum: Schematic & diagram & Dimensions of KinCony PCB layout CAD file - No Replies

T64M PCB layout CAD file

.zip   KINCONY-T64M-V1.0.zip (Size: 441.39 KB / Downloads: 16)

Print this item

  T16M PCB layout CAD file
Posted by: admin - 05-05-2026, 08:07 AM - Forum: Schematic & diagram & Dimensions of KinCony PCB layout CAD file - No Replies

T16M PCB layout CAD file

.zip   KINCONY-T16M-V1.1.zip (Size: 154.94 KB / Downloads: 10)

Print this item

  24V Pulse input
Posted by: Onepointbrewing - 05-04-2026, 09:34 AM - Forum: F16 - Replies (3)

I have a IFM SM7000 flow meter that is set to nPn pulse output for measuring the flow unit.

It is a 24V unit (both the F16 and the flow meter)

What input on the F16 can I wire this to in order to count the pulses..... Will the standard digital inputs work?


Thanks

Print this item

  N series Energy Meter for Loxone UDP Protocol
Posted by: admin - 05-04-2026, 08:19 AM - Forum: KinCony integrate with Loxone home automation - No Replies

Energy Loxone Protocol
=======================

Overview
--------
This document describes the Loxone string protocol for Energy module.
Default delimiter is comma (,). Chip ID: 1-6, Channel: 1-10.


Commands
--------

1. GET_ENERGY_CURRENT - Get current (A) for specific channel
  Request:  RELAY-GET_ENERGY_CURRENT-255,{chip},{channel}
  Response: RELAY-GET_ENERGY_CURRENT-255,{chip},{channel},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_CURRENT-255,1,1
    Response: RELAY-GET_ENERGY_CURRENT-255,1,1,2.350,OK

2. GET_ENERGY_POWER - Get power (W) for specific channel
  Request:  RELAY-GET_ENERGY_POWER-255,{chip},{channel}
  Response: RELAY-GET_ENERGY_POWER-255,{chip},{channel},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_POWER-255,1,1
    Response: RELAY-GET_ENERGY_POWER-255,1,1,512.5,OK

3. GET_ENERGY_KWH - Get energy (kWh) for specific channel
  Request:  RELAY-GET_ENERGY_KWH-255,{chip},{channel}
  Response: RELAY-GET_ENERGY_KWH-255,{chip},{channel},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_KWH-255,1,1
    Response: RELAY-GET_ENERGY_KWH-255,1,1,1250,OK

4. GET_ENERGY_VOLT - Get voltage (V) for chip
  Request:  RELAY-GET_ENERGY_VOLT-255,{chip}
  Response: RELAY-GET_ENERGY_VOLT-255,{chip},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_VOLT-255,1
    Response: RELAY-GET_ENERGY_VOLT-255,1,220.50,OK

5. GET_ENERGY_FREQ - Get frequency (Hz) for chip
  Request:  RELAY-GET_ENERGY_FREQ-255,{chip}
  Response: RELAY-GET_ENERGY_FREQ-255,{chip},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_FREQ-255,1
    Response: RELAY-GET_ENERGY_FREQ-255,1,50.00,OK

6. GET_ENERGY_TEMP - Get temperature © for chip
  Request:  RELAY-GET_ENERGY_TEMP-255,{chip}
  Response: RELAY-GET_ENERGY_TEMP-255,{chip},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_TEMP-255,1
    Response: RELAY-GET_ENERGY_TEMP-255,1,35.5,OK

7. GET_ENERGY_PF - Get power factor for chip
  Request:  RELAY-GET_ENERGY_PF-255,{chip}
  Response: RELAY-GET_ENERGY_PF-255,{chip},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_PF-255,1
    Response: RELAY-GET_ENERGY_PF-255,1,0.95,OK

8. GET_ENERGY_SUM - Get total energy (kWh) for chip
  Request:  RELAY-GET_ENERGY_SUM-255,{chip}
  Response: RELAY-GET_ENERGY_SUM-255,{chip},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_SUM-255,1
    Response: RELAY-GET_ENERGY_SUM-255,1,12500,OK

   
protocol download:

.txt   Nx-energy_loxone_protocol.txt (Size: 2.34 KB / Downloads: 15)

Print this item

  N series Energy Meter for Loxone UDP Protocol
Posted by: admin - 05-04-2026, 08:19 AM - Forum: N10 - No Replies

Energy Loxone Protocol
=======================

Overview
--------
This document describes the Loxone string protocol for Energy module.
Default delimiter is comma (,). Chip ID: 1-6, Channel: 1-10.


Commands
--------

1. GET_ENERGY_CURRENT - Get current (A) for specific channel
  Request:  RELAY-GET_ENERGY_CURRENT-255,{chip},{channel}
  Response: RELAY-GET_ENERGY_CURRENT-255,{chip},{channel},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_CURRENT-255,1,1
    Response: RELAY-GET_ENERGY_CURRENT-255,1,1,2.350,OK

2. GET_ENERGY_POWER - Get power (W) for specific channel
  Request:  RELAY-GET_ENERGY_POWER-255,{chip},{channel}
  Response: RELAY-GET_ENERGY_POWER-255,{chip},{channel},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_POWER-255,1,1
    Response: RELAY-GET_ENERGY_POWER-255,1,1,512.5,OK

3. GET_ENERGY_KWH - Get energy (kWh) for specific channel
  Request:  RELAY-GET_ENERGY_KWH-255,{chip},{channel}
  Response: RELAY-GET_ENERGY_KWH-255,{chip},{channel},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_KWH-255,1,1
    Response: RELAY-GET_ENERGY_KWH-255,1,1,1250,OK

4. GET_ENERGY_VOLT - Get voltage (V) for chip
  Request:  RELAY-GET_ENERGY_VOLT-255,{chip}
  Response: RELAY-GET_ENERGY_VOLT-255,{chip},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_VOLT-255,1
    Response: RELAY-GET_ENERGY_VOLT-255,1,220.50,OK

5. GET_ENERGY_FREQ - Get frequency (Hz) for chip
  Request:  RELAY-GET_ENERGY_FREQ-255,{chip}
  Response: RELAY-GET_ENERGY_FREQ-255,{chip},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_FREQ-255,1
    Response: RELAY-GET_ENERGY_FREQ-255,1,50.00,OK

6. GET_ENERGY_TEMP - Get temperature © for chip
  Request:  RELAY-GET_ENERGY_TEMP-255,{chip}
  Response: RELAY-GET_ENERGY_TEMP-255,{chip},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_TEMP-255,1
    Response: RELAY-GET_ENERGY_TEMP-255,1,35.5,OK

7. GET_ENERGY_PF - Get power factor for chip
  Request:  RELAY-GET_ENERGY_PF-255,{chip}
  Response: RELAY-GET_ENERGY_PF-255,{chip},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_PF-255,1
    Response: RELAY-GET_ENERGY_PF-255,1,0.95,OK

8. GET_ENERGY_SUM - Get total energy (kWh) for chip
  Request:  RELAY-GET_ENERGY_SUM-255,{chip}
  Response: RELAY-GET_ENERGY_SUM-255,{chip},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_SUM-255,1
    Response: RELAY-GET_ENERGY_SUM-255,1,12500,OK

   
protocol download:

.txt   Nx-energy_loxone_protocol.txt (Size: 2.34 KB / Downloads: 17)

Print this item

  N series Energy Meter for Loxone UDP Protocol
Posted by: admin - 05-04-2026, 08:19 AM - Forum: N20 - No Replies

Energy Loxone Protocol
=======================

Overview
--------
This document describes the Loxone string protocol for Energy module.
Default delimiter is comma (,). Chip ID: 1-6, Channel: 1-10.


Commands
--------

1. GET_ENERGY_CURRENT - Get current (A) for specific channel
  Request:  RELAY-GET_ENERGY_CURRENT-255,{chip},{channel}
  Response: RELAY-GET_ENERGY_CURRENT-255,{chip},{channel},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_CURRENT-255,1,1
    Response: RELAY-GET_ENERGY_CURRENT-255,1,1,2.350,OK

2. GET_ENERGY_POWER - Get power (W) for specific channel
  Request:  RELAY-GET_ENERGY_POWER-255,{chip},{channel}
  Response: RELAY-GET_ENERGY_POWER-255,{chip},{channel},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_POWER-255,1,1
    Response: RELAY-GET_ENERGY_POWER-255,1,1,512.5,OK

3. GET_ENERGY_KWH - Get energy (kWh) for specific channel
  Request:  RELAY-GET_ENERGY_KWH-255,{chip},{channel}
  Response: RELAY-GET_ENERGY_KWH-255,{chip},{channel},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_KWH-255,1,1
    Response: RELAY-GET_ENERGY_KWH-255,1,1,1250,OK

4. GET_ENERGY_VOLT - Get voltage (V) for chip
  Request:  RELAY-GET_ENERGY_VOLT-255,{chip}
  Response: RELAY-GET_ENERGY_VOLT-255,{chip},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_VOLT-255,1
    Response: RELAY-GET_ENERGY_VOLT-255,1,220.50,OK

5. GET_ENERGY_FREQ - Get frequency (Hz) for chip
  Request:  RELAY-GET_ENERGY_FREQ-255,{chip}
  Response: RELAY-GET_ENERGY_FREQ-255,{chip},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_FREQ-255,1
    Response: RELAY-GET_ENERGY_FREQ-255,1,50.00,OK

6. GET_ENERGY_TEMP - Get temperature © for chip
  Request:  RELAY-GET_ENERGY_TEMP-255,{chip}
  Response: RELAY-GET_ENERGY_TEMP-255,{chip},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_TEMP-255,1
    Response: RELAY-GET_ENERGY_TEMP-255,1,35.5,OK

7. GET_ENERGY_PF - Get power factor for chip
  Request:  RELAY-GET_ENERGY_PF-255,{chip}
  Response: RELAY-GET_ENERGY_PF-255,{chip},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_PF-255,1
    Response: RELAY-GET_ENERGY_PF-255,1,0.95,OK

8. GET_ENERGY_SUM - Get total energy (kWh) for chip
  Request:  RELAY-GET_ENERGY_SUM-255,{chip}
  Response: RELAY-GET_ENERGY_SUM-255,{chip},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_SUM-255,1
    Response: RELAY-GET_ENERGY_SUM-255,1,12500,OK

   
protocol download:

.txt   Nx-energy_loxone_protocol.txt (Size: 2.34 KB / Downloads: 16)

Print this item

  N series Energy Meter for Loxone UDP Protocol
Posted by: admin - 05-04-2026, 08:19 AM - Forum: N30 - No Replies

Energy Loxone Protocol
=======================

Overview
--------
This document describes the Loxone string protocol for Energy module.
Default delimiter is comma (,). Chip ID: 1-6, Channel: 1-10.


Commands
--------

1. GET_ENERGY_CURRENT - Get current (A) for specific channel
  Request:  RELAY-GET_ENERGY_CURRENT-255,{chip},{channel}
  Response: RELAY-GET_ENERGY_CURRENT-255,{chip},{channel},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_CURRENT-255,1,1
    Response: RELAY-GET_ENERGY_CURRENT-255,1,1,2.350,OK

2. GET_ENERGY_POWER - Get power (W) for specific channel
  Request:  RELAY-GET_ENERGY_POWER-255,{chip},{channel}
  Response: RELAY-GET_ENERGY_POWER-255,{chip},{channel},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_POWER-255,1,1
    Response: RELAY-GET_ENERGY_POWER-255,1,1,512.5,OK

3. GET_ENERGY_KWH - Get energy (kWh) for specific channel
  Request:  RELAY-GET_ENERGY_KWH-255,{chip},{channel}
  Response: RELAY-GET_ENERGY_KWH-255,{chip},{channel},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_KWH-255,1,1
    Response: RELAY-GET_ENERGY_KWH-255,1,1,1250,OK

4. GET_ENERGY_VOLT - Get voltage (V) for chip
  Request:  RELAY-GET_ENERGY_VOLT-255,{chip}
  Response: RELAY-GET_ENERGY_VOLT-255,{chip},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_VOLT-255,1
    Response: RELAY-GET_ENERGY_VOLT-255,1,220.50,OK

5. GET_ENERGY_FREQ - Get frequency (Hz) for chip
  Request:  RELAY-GET_ENERGY_FREQ-255,{chip}
  Response: RELAY-GET_ENERGY_FREQ-255,{chip},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_FREQ-255,1
    Response: RELAY-GET_ENERGY_FREQ-255,1,50.00,OK

6. GET_ENERGY_TEMP - Get temperature © for chip
  Request:  RELAY-GET_ENERGY_TEMP-255,{chip}
  Response: RELAY-GET_ENERGY_TEMP-255,{chip},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_TEMP-255,1
    Response: RELAY-GET_ENERGY_TEMP-255,1,35.5,OK

7. GET_ENERGY_PF - Get power factor for chip
  Request:  RELAY-GET_ENERGY_PF-255,{chip}
  Response: RELAY-GET_ENERGY_PF-255,{chip},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_PF-255,1
    Response: RELAY-GET_ENERGY_PF-255,1,0.95,OK

8. GET_ENERGY_SUM - Get total energy (kWh) for chip
  Request:  RELAY-GET_ENERGY_SUM-255,{chip}
  Response: RELAY-GET_ENERGY_SUM-255,{chip},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_SUM-255,1
    Response: RELAY-GET_ENERGY_SUM-255,1,12500,OK

   
protocol download:

.txt   Nx-energy_loxone_protocol.txt (Size: 2.34 KB / Downloads: 16)

Print this item

  N series Energy Meter for Loxone UDP Protocol
Posted by: admin - 05-04-2026, 08:19 AM - Forum: N60 - No Replies

Energy Loxone Protocol
=======================

Overview
--------
This document describes the Loxone string protocol for Energy module.
Default delimiter is comma (,). Chip ID: 1-6, Channel: 1-10.


Commands
--------

1. GET_ENERGY_CURRENT - Get current (A) for specific channel
  Request:  RELAY-GET_ENERGY_CURRENT-255,{chip},{channel}
  Response: RELAY-GET_ENERGY_CURRENT-255,{chip},{channel},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_CURRENT-255,1,1
    Response: RELAY-GET_ENERGY_CURRENT-255,1,1,2.350,OK

2. GET_ENERGY_POWER - Get power (W) for specific channel
  Request:  RELAY-GET_ENERGY_POWER-255,{chip},{channel}
  Response: RELAY-GET_ENERGY_POWER-255,{chip},{channel},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_POWER-255,1,1
    Response: RELAY-GET_ENERGY_POWER-255,1,1,512.5,OK

3. GET_ENERGY_KWH - Get energy (kWh) for specific channel
  Request:  RELAY-GET_ENERGY_KWH-255,{chip},{channel}
  Response: RELAY-GET_ENERGY_KWH-255,{chip},{channel},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_KWH-255,1,1
    Response: RELAY-GET_ENERGY_KWH-255,1,1,1250,OK

4. GET_ENERGY_VOLT - Get voltage (V) for chip
  Request:  RELAY-GET_ENERGY_VOLT-255,{chip}
  Response: RELAY-GET_ENERGY_VOLT-255,{chip},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_VOLT-255,1
    Response: RELAY-GET_ENERGY_VOLT-255,1,220.50,OK

5. GET_ENERGY_FREQ - Get frequency (Hz) for chip
  Request:  RELAY-GET_ENERGY_FREQ-255,{chip}
  Response: RELAY-GET_ENERGY_FREQ-255,{chip},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_FREQ-255,1
    Response: RELAY-GET_ENERGY_FREQ-255,1,50.00,OK

6. GET_ENERGY_TEMP - Get temperature © for chip
  Request:  RELAY-GET_ENERGY_TEMP-255,{chip}
  Response: RELAY-GET_ENERGY_TEMP-255,{chip},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_TEMP-255,1
    Response: RELAY-GET_ENERGY_TEMP-255,1,35.5,OK

7. GET_ENERGY_PF - Get power factor for chip
  Request:  RELAY-GET_ENERGY_PF-255,{chip}
  Response: RELAY-GET_ENERGY_PF-255,{chip},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_PF-255,1
    Response: RELAY-GET_ENERGY_PF-255,1,0.95,OK

8. GET_ENERGY_SUM - Get total energy (kWh) for chip
  Request:  RELAY-GET_ENERGY_SUM-255,{chip}
  Response: RELAY-GET_ENERGY_SUM-255,{chip},{value},OK
  Example:
    Request:  RELAY-GET_ENERGY_SUM-255,1
    Response: RELAY-GET_ENERGY_SUM-255,1,12500,OK

   
protocol download:

.txt   Nx-energy_loxone_protocol.txt (Size: 2.34 KB / Downloads: 15)

Print this item

  KC868-A8 on Heat Pump for SG-Ready
Posted by: ssopiadis - 05-03-2026, 02:28 PM - Forum: KC868-HxB series Smart Controller - Replies (1)

I bought a KinCony kc868-a8 for a custom project.

With this I want to control (amongst other things) through SG-Ready a heat pump (ALSAVO Air Source Heat Pump Monoblock - 7kW).
The documentation of the heat pump (https://rjwebshop.dk/upload_dir/shop/Zea...Manual.pdf) explains at page 63 that CN10 and CN30 are designed for SG-Ready. These connections I (think) are needed to be connected separately to the relays on the kc868-a8. 

Is that right? Do you have any example on how to do that? I think that simple cable without potential will work.

I searched your videos but couldn’t find any information regarding.

Best regards
Savvas

Print this item