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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 9,173
» Latest member: Granit Maister
» Forum threads: 4,087
» Forum posts: 20,490

Full Statistics

Online Users
There are currently 117 online users.
» 0 Member(s) | 96 Guest(s)
Amazonbot, Applebot, AwarioBot, Baidu, Bing, Bytespider, Crawl, PetalBot, bot

Latest Threads
Wiegand
Forum: KC868-A16
Last Post: admin
9 hours ago
» Replies: 1
» Views: 12
Tiny Alarm board after fl...
Forum: TA
Last Post: admin
9 hours ago
» Replies: 1
» Views: 8
Programmation kc868-A8 & ...
Forum: News
Last Post: admin
9 hours ago
» Replies: 1
» Views: 8
M16v2 and SCT013-050
Forum: KC868-M16 / M1 / MB / M30
Last Post: admin
Yesterday, 06:28 AM
» Replies: 5
» Views: 43
[arduino code examples fo...
Forum: KC868-AGv3
Last Post: admin
06-11-2026, 08:44 PM
» Replies: 0
» Views: 18
[arduino code examples fo...
Forum: KC868-AGv3
Last Post: admin
06-11-2026, 08:42 PM
» Replies: 0
» Views: 5
[arduino code examples fo...
Forum: KC868-AGv3
Last Post: admin
06-11-2026, 08:41 PM
» Replies: 0
» Views: 6
KC868-AGv3 ESP32S3 I/O pi...
Forum: KC868-AGv3
Last Post: admin
06-11-2026, 08:38 PM
» Replies: 0
» Views: 7
KinCony KC868-AGv3 ESP32S...
Forum: News
Last Post: admin
06-11-2026, 08:32 PM
» Replies: 0
» Views: 18
Single-family home automa...
Forum: DIY Project
Last Post: rosnoteh
06-11-2026, 08:13 PM
» Replies: 2
» Views: 43

  AIO Hybrid Smart Controller ESP32 system block diagram
Posted by: admin - 04-24-2026, 06:58 AM - Forum: AIO Hybrid - No Replies

   

Print this item

  Add uptime to board information
Posted by: twostar - 04-24-2026, 06:23 AM - Forum: Suggestions and feedback on KinCony's products - Replies (14)

Would it be possible to add an uptime counter to the KC868 front page?  At the moment it displays system time, IP address, etc, but not how long it's been running.  The reason I'd like to know is that I keep getting sensors going offline briefly and then back online again and I don't know if it's the board rebooting or something else.

Print this item

  Best Practices for Scaling IoT Projects with ESP32 & DevOps?
Posted by: loral - 04-21-2026, 11:42 AM - Forum: Development - Replies (1)

Hi everyone,
I’ve been working on a few ESP32-based automation projects recently (mostly using ESPHome + Home Assistant), and I’m now reaching a point where things are getting more complex, multiple devices, integrations, and frequent updates.
While the hardware side (like KC868 boards) is quite flexible, managing firmware updates, monitoring, and deployment across multiple nodes is becoming a challenge.
That got me thinking about bringing DevOps concepts into IoT development, things like:

  • CI/CD pipelines for firmware updates
  • Version control for configurations (ESPHome / Arduino)
  • Automated testing before deploying to live devices
  • Monitoring uptime and performance across nodes
I recently came across some discussions about teams using accurate DevOps Services Sharjah to manage scalable infrastructures, especially for automation-heavy environments. It seems like a similar approach could be useful even for advanced DIY or semi-professional IoT setups.
Would love to hear from the community:
  • Are you using any DevOps-style workflows for your ESP32 or KinCony projects?
  • How do you manage updates across multiple devices?
  • Any tools or best practices for maintaining stability at scale?
  • Has anyone tried integrating GitOps or containerized services with their IoT backend?
Looking forward to learning from your experiences. Thanks in advance!

Print this item

  KC868-A16-V3.1 MODBUS RS485
Posted by: dponyatov - 04-20-2026, 10:32 AM - Forum: "KCS" v3 firmware - Replies (1)

this command work ok:
01 05 00 00 ff 00 8c 3a

but read coil report 07 coils enabled (shifted)

coil write from 08 coil and above does nothing: no LEDs, no affection on coils read

Print this item

  [Bug] A16v3 (v3.24.3) - Write Single Coil (FC05) Modbus standard violation
Posted by: dponyatov - 04-20-2026, 10:06 AM - Forum: "KCS" v3 firmware - Replies (1)

- Firmware Version: v3.24.3 (Build Date: Apr 12 2026)
- Hardware: A16v3
- Communication: Modbus RTU (RS485)

## Description:

I have encountered an issue regarding the implementation of Modbus Function Code 05 (Write Single Coil).

According to the official Modbus specification, to turn a coil ON, the data field must send FF00. To turn it OFF, the data field must send 0000. However, my A16v3 running firmware v3.24.3 does not seem to accept this standard.

## Observed Behavior:

The device expects (or only responds to) a "bit-encoded" state in the data field. For example:

Instead of FF 00, the device expects 01 00 (or similar bit masks) to activate the coil.

Instead of 00 00, it expects 00 00.

This behavior is non-standard. It appears the firmware is treating FC05 as if it were a "Mask" or mimicking the data structure of FC15 (Write Multiple Coils) rather than the strict FF00/0000 pattern required by the Modbus standard.

## Steps to Reproduce:

Establish Modbus TCP connection to the device (IP: 10.130.1.43).

Send standard Modbus FC05 frame to any valid coil address (e.g., 00 01):

Standard ON: [Slave ID] 05 [Addr High] [Addr Low] FF 00 [CRC]

Standard OFF: [Slave ID] 05 [Addr High] [Addr Low] 00 00 [CRC]

Observe that the coil state does not change (or the device returns an exception/incorrect response).

Send a modified frame using bit-encoded data (e.g., 01 00 for ON).

Observe that the coil toggles successfully.

## Expected Behavior:

The device should strictly adhere to the Modbus specification for Function Code 05, using FF00 for ON and 0000 for OFF.

## Questions / Requests:

- Is this a known issue in v3.24.3?

-Is there a configuration flag in the Web UI (e.g., "Strict Mode," "Legacy Mode," or "Compatibility Mode") that can switch the device to standard Modbus compliance?

-If not, is this planned to be fixed in a future firmware update?

## Additional Context:

Software Version: v3.24.3

Build Date: Apr 12 2026

I am using a standard Modbus master software (PLC/SCADA) that strictly adheres to the FF00 standard, so I cannot easily modify the protocol structure on the master side.

Print this item

  KCS update and ARM CPU update
Posted by: HolyKirka - 04-20-2026, 08:01 AM - Forum: N30 - Replies (2)

Hello.

I want to upgrade my N30 (KCS v3.15.0) with KCS v3.24.3
Do I need to make new ARM CPU update firmware (support 0.001kwh now https://www.kincony.com/forum/showthread.php?tid=9107) before or not? Or KCS update is enougth?

Best Regards.

Print this item

  KC868-A16v3 Smart Controller Wiring Examples
Posted by: admin - 04-20-2026, 07:31 AM - Forum: KC868-A16v3 - No Replies

   

Print this item

  KC868-A16v3 Smart Controller ESP32 system block diagram
Posted by: admin - 04-20-2026, 07:31 AM - Forum: KC868-A16v3 - No Replies

   

Print this item

  T128M Smart Controller Wiring Examples
Posted by: admin - 04-20-2026, 06:27 AM - Forum: T128M - No Replies

   

Print this item

  T64M Smart Controller Wiring Examples
Posted by: admin - 04-20-2026, 05:38 AM - Forum: T64M - No Replies

   

Print this item