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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 9,022
» Latest member: Globaltourism
» Forum threads: 3,977
» Forum posts: 20,159

Full Statistics

Online Users
There are currently 14 online users.
» 0 Member(s) | 5 Guest(s)
Amazonbot, Bing, Crawl, PetalBot, bot

Latest Threads
RS485 Modbus SHT30 sensor...
Forum: "KCS" v3 firmware
Last Post: admin
Today, 02:30 AM
» Replies: 4
» Views: 287
N60 N30 N20 N10 ARM CPU f...
Forum: N30
Last Post: admin
Yesterday, 11:00 PM
» Replies: 21
» Views: 884
Current and Power not add...
Forum: N60
Last Post: edalquist
05-09-2026, 03:58 AM
» Replies: 10
» Views: 298
Python and arduino code
Forum: News
Last Post: admin
05-08-2026, 12:38 PM
» Replies: 1
» Views: 26
[SOLVED] N10 - no KWH sho...
Forum: N10
Last Post: admin
05-07-2026, 05:56 AM
» Replies: 7
» Views: 122
B24 Smart Controller Wiri...
Forum: B24
Last Post: admin
05-06-2026, 10:12 PM
» Replies: 2
» Views: 99
AIO Hybrid ESP32-S3 IO pi...
Forum: AIO Hybrid
Last Post: H_spadacini
05-06-2026, 10:03 AM
» Replies: 3
» Views: 594
T32M issue with Output 1
Forum: DIY Project
Last Post: BarbaraVikuvis
05-06-2026, 06:49 AM
» Replies: 4
» Views: 366
RTC DS3231 yaml code
Forum: KC868-A16v3
Last Post: admin
05-05-2026, 01:38 PM
» Replies: 1
» Views: 57
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: 43

  Python and arduino code
Posted by: Saif Kitany - 05-08-2026, 09:34 AM - Forum: News - Replies (1)

Hello,

I would like to have a video of explaining how to write arduino or python code for A32 pro.

Print this item

  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: 37)

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: 33)

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: 23)

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: 24)

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: 21)

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: 28)

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: 24)

Print this item