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,915
» Forum posts: 15,476

Full Statistics

Online Users
There are currently 21 online users.
» 0 Member(s) | 7 Guest(s)
Amazonbot, Bytespider, Crawl, PetalBot, WordPress/, bot, owler

Latest Threads
KC868-A16 rev. 1.6 firmwa...
Forum: "KCS" v2 firmware system
Last Post: jollyroger
4 hours ago
» Replies: 2
» Views: 18
A32pro RGB led strip
Forum: DIY Project
Last Post: Nikola
5 hours ago
» Replies: 0
» Views: 6
KC868-M16v2 configure yam...
Forum: KC868-M16 / M1 / MB / M30
Last Post: athxp
6 hours ago
» Replies: 43
» Views: 5,307
ESP32S3 Chip efuse check ...
Forum: "KCS" v3 firmware
Last Post: saymyname
8 hours ago
» Replies: 2
» Views: 8
KC868-A16 analog input
Forum: KC868-A series and Uair Smart Controller
Last Post: elemarek
9 hours ago
» Replies: 0
» Views: 38
BM16 Problems
Forum: B16M
Last Post: admin
Today, 08:25 AM
» Replies: 1
» Views: 7
KC868-A inputs pulses
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
Yesterday, 10:15 AM
» Replies: 9
» Views: 61
How to properly do factor...
Forum: KC868-A16
Last Post: thomasfrank
Yesterday, 08:51 AM
» Replies: 5
» Views: 507
Free sample request A. fr...
Forum: Apply for free sample product
Last Post: perabanj
03-30-2025, 10:45 PM
» Replies: 0
» Views: 6
Dummy question: non-zero ...
Forum: T16M
Last Post: ocramius
03-30-2025, 01:20 PM
» Replies: 8
» Views: 108

  KC868-A16S analog input
Posted by: DK5EW - 02-24-2025, 06:16 PM - Forum: KC868-A16S - Replies (2)

I`m giving 1.5V DC at the analog input.

I save in the webserver my setup but I do not see any voltage at the Tuya app.

Any hint what is wrong ?

regrds

Print this item

  DOA?
Posted by: jeffer - 02-24-2025, 05:24 PM - Forum: KC868-A16 - Replies (2)

I just received my board.   The USB-C port does not respond at all, and when I connect to the network, the board has the IP address 192.168.1.200, but the only open port is 53.   I have put my computer on the same subnet and scan via UDP_SCAN_LIST and nothing is found.   I have tried holding both reset and download buttons (both together and at different times) and no results.

Print this item

  Notes on using a KC868 as an alarm controller
Posted by: twostar - 02-24-2025, 12:32 PM - Forum: DIY Project - Replies (1)

These are some notes on using a KC868 as an alarm controller.  The functionality is implemented as IFTTT rules implementing the alarm as ladder logic, although I've used text rather than graphical notation because you can't really do ladder logic in ASCII.  In this case DI 1-8 are PIR motion sensors and DI 9-12 are smoke alarm sensors.  There's sirens/strobes connected to DO 15-16.

In order to be able to do this you need to chain rules which the firmware currently doesn't support but there are requests to add it to the v3 firmware, at the moment I've worked around it by using a relay board to take the wet-contact DO output to the dry-contact DI inputs.  When support for this is added to the v3 firmware, e.g. by allowing DO outputs to be tested in IF conditions, then you don't need the external wiring.

  1. Name = "Smoke", IF { DI 9-12 Rising Edge }, { Sensor1 Temperature >= 50 } THEN { DO On 3 15 16 }
    -- If any smoke or heat detector triggers then turn sirens on, chain to rule 8 via DO 3 -> DI 15.
  2. Name = "Arm", IF { DI 15 Rising Edge } THEN { Delay 5s } { DO On 1 }
    -- If arm signal is received then wait 5s and turn on Armed output, chain to rule 7 via DO 1 -> DI 13.
  3. Name = "Disarm", IF { DI 16 Rising Edge } THEN { DO Off 1 15 16 }
    -- If disarm signal is received then turn off Armed output, turn off Siren output, chain to rule 7 via DO 1 -> DI 13.
  4. Name = "Entrance Motion", IF { DI 1 Rising Edge } THEN { Delay 10s } { DO On 2 }
    -- If motion is detected at the entrance then wait 10s and turn on Motion output.  This provides an entry delay to disarm the system. Chain to rule 7 via DO 2 -> DI 14.
  5. Name = "Motion Main", IF { DI 2-4 Rising Edge } THEN { DO On 2 }
    -- If motion is detected elsewhere then turn on Motion output, no delay.  Chain to rule 7 via DO 2 -> DI 14.
  6. Name = "Motion Basement", IF { DI 5-8 Rising Edge } THEN { DO On 2 }
    -- If motion is detected in the basement then turn on Motion output, no delay.  Chain to rule 7 via DO 2 -> DI 14.

    Connect DO 1 to DI 13 via NO relay.
    Connect DO 2 to DI 14 via NO relay.
  7. Name = "Alarm Trigger", IF { DI 13 AND DI 14 } THEN { DO On 3 15 16 }
    -- If the alarm is armed, DI 13, and motion is detected, DI 14, turn sirens on.  Chain to rule 8 via DO 3 -> DI 15.

    Connect DO 3 to DI 15 via NO relay.
  8. Name = "Siren Delay", IF { DI 15-16 } THEN { Delay 300s } { DO Off 1 2 3 15 16 }
    -- If sirens are turned on, wait 5 minutes then turn them off again, also turn off all arming signals and triggers.

Rules 2 and 3 handle external arm and disarm signals, e.g. from a keypad by the door, they implement an RS flip-flop to enable triggering in Rule 7.  Rule 4 triggers the alarm after a 10s entrance delay to allow disarming.  Rules 5 and 6 trigger the alarm immediately.  Rule 7 sounds the sirens if the alarm is armed.  Rule 8 runs them for 5 minutes, then turns them off again.

There's one bug in this caused by the fact that it's necessary to use an external relay board to chain rules, there's a 5s arming delay but the disarm is immediate, which means if you arm, then disarm, then the arming delay will cause the Arm signal to be sent after the Disarm signal.  This needs an extra enabling signal like Rule 7 but I'm out of relay contacts at this point so can't chain in an extra rule.  If support is added to the v3 firmware then you can just set another DO and test it in a IF condition so the disarm takes precedence over the arm.

This is a work in progress so there's probably other problems in it, all comments welcome.

Print this item

Bug KC868-HA-V21 serial port selector drop box freezing
Posted by: PeterOo - 02-23-2025, 03:48 PM - Forum: KC868-HA /HA v2 - Replies (8)

Hi admin,
    when I click the serial port drop box, the app doesn't respond anything, it is freezing. I have already installed CH341 driver on my laptop for rs485 to usb config device. It showing the correct com port when I checked in device manager. But, I can't select the serial port in the app. I m using windows 11. Help me with that.

   

I m sure KC868-HA-V21 module is working normal. It is sending some data frame when I press k1 button in the serial monitor.

   

Print this item

  Advanced control using temperature
Posted by: balcerseb - 02-23-2025, 08:30 AM - Forum: KC868-A16 - Replies (1)

Hi is it possible through Kincony software to do such logic:
I would like to control two outputs the first output is to increase the flow of water the second to decrease the example:
temperature sensor measures the temperature of water that flows through e.g. a heater at a setting of, for example, 30 degrees it does nothing after exceeding e.g. by 3 degrees the logic turns on output ''1'' for 10 s (to increase the flow and at the same time reduce the temperature of heated water) the thermometer measurement would have to measurement of the thermometer would have to be taken at intervals, e.g. every 20 seconds (adjustable) and the principle of operation is reversed if the temperature drops after some time logic turns on output ''1'' to reduce the flow in order to equalize the temperature and so on and so forth the measurement would have to be taken at intervals due to the reaction time of cooling water.
Is it possible to set it up this way through the IFTTT website

It must work on the principle of a temperature controller only with a delay ( warm up or cool down response time)

Print this item

  T16M MOSFET max current
Posted by: Mojito_dev - 02-22-2025, 03:44 PM - Forum: "KCS" v3 firmware - Replies (1)

T16M max current is max 4A per channel, and max 24V or all capacity is 4A for all channels?

Print this item

  A8s v2 inputs not working when using PoE
Posted by: halt77 - 02-22-2025, 10:43 AM - Forum: KC868-A8S - Replies (5)

Dear Kincony team, 

It seems to be a problem with the A8S v2 board.

I've tested the A8S v2 with the PoE board and none of the inputs work (using either the KCS or esphome firmware).

If you power the board using the 12v input, everything works as expected (the inputs work), but as soon as you power the board with the Kinkony PoE board, all inputs go down (and they stop showing the expected status).

You can easily diagnose this providing power to the board only with PoE, as you will see the inputs do not work (even using KCS firmware).

I've about 20 A8S v2 boards. How can I correct this so inputs work when using PoE power?

Regards.

Print this item

  M16v2
Posted by: kr_user - 02-22-2025, 10:11 AM - Forum: KC868-M16 / M1 / MB / M30 - Replies (1)

Does the m16v2 support bidirectional currents ? => Show negative current if clamp is turned the other way?

Print this item

  "KCS" v3.7.2 firmware BIN file download
Posted by: admin - 02-22-2025, 07:58 AM - Forum: "KCS" v3 firmware - No Replies

v3.7.2 improvement:
1. fixed dimmer issue in Tuya app.



Attached Files
.zip   KCS_A6V3_V3.7.2.zip (Size: 1 MB / Downloads: 69)
.zip   KCS_A16V3_V3.7.2.zip (Size: 1.08 MB / Downloads: 85)
.zip   KCS_A32PRO_V3.7.2.zip (Size: 1.04 MB / Downloads: 37)
.zip   KCS_AG8_V3.7.2.zip (Size: 1.03 MB / Downloads: 37)
.zip   KCS_B16M_V3.7.2.zip (Size: 1.07 MB / Downloads: 40)
.zip   KCS_F16_V3.7.2.zip (Size: 1.07 MB / Downloads: 31)
.zip   KCS_F24_V3.7.2.zip (Size: 1.07 MB / Downloads: 33)
.zip   KCS_T16M_V3.7.2.zip (Size: 1.02 MB / Downloads: 46)
Print this item

  Is there a A8v3 coming with ESP32-S3? KC868-A8v3
Posted by: dbl0 - 02-22-2025, 03:28 AM - Forum: KC868-A series and Uair Smart Controller - Replies (3)

I saw the A6v3 land, but I need 8 outputs!

Print this item