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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 7,299
» Latest member: Elyor2010
» Forum threads: 3,226
» Forum posts: 16,944

Full Statistics

Online Users
There are currently 26 online users.
» 0 Member(s) | 7 Guest(s)
Amazonbot, AwarioBot, Bytespider, Crawl, Google, PetalBot, bot

Latest Threads
M30 configure yaml for ES...
Forum: KC868-M16 / M1 / MB / M30
Last Post: roflas
4 hours ago
» Replies: 78
» Views: 3,951
Failed Uploading
Forum: KC868-A16
Last Post: Rikfri
Yesterday, 02:31 PM
» Replies: 2
» Views: 17
KC868 SHT30 Homeassistant
Forum: News
Last Post: silver_kruf
Yesterday, 01:11 PM
» Replies: 10
» Views: 50
KinCony AG Pro Wireless A...
Forum: KC868-AG / AG Pro / AG8
Last Post: admin
Yesterday, 11:01 AM
» Replies: 3
» Views: 37
KC868-HAv2 work with F24 ...
Forum: KC868-HA /HA v2
Last Post: admin
Yesterday, 04:48 AM
» Replies: 1
» Views: 23
KC868-M16v2 configure yam...
Forum: KC868-M16 / M1 / MB / M30
Last Post: admin
07-09-2025, 10:28 PM
» Replies: 77
» Views: 7,132
"KCS" v3.9.4 firmware BIN...
Forum: "KCS" v3 firmware
Last Post: admin
07-09-2025, 10:26 PM
» Replies: 8
» Views: 605
MCP23017 interrupt pin
Forum: KinCony Server-Mini / Server-16 Raspberry Pi4 relay module
Last Post: admin
07-09-2025, 10:25 PM
» Replies: 1
» Views: 11
G1 fails to register inco...
Forum: G1
Last Post: admin
07-09-2025, 12:48 PM
» Replies: 15
» Views: 254
B16 ESPHome yaml for home...
Forum: B16
Last Post: ck1
07-09-2025, 12:46 PM
» Replies: 5
» Views: 319

  "KCS" v3.9.1 firmware BIN file download
Posted by: admin - 04-11-2025, 04:40 AM - Forum: "KCS" v3 firmware - Replies (21)

v3.9.1 improvement:
1. fixed bug with KC868-A16v3 digital input ports.
2. fixed bug with DHT22 sensor.



Attached Files
.zip   KCS_A2V3_V3.9.1.zip (Size: 1.03 MB / Downloads: 66)
.zip   KCS_A6V3_V3.9.1.zip (Size: 1.01 MB / Downloads: 98)
.zip   KCS_A8V3_V3.9.1.zip (Size: 1.06 MB / Downloads: 72)
.zip   KCS_A16V3_V3.9.1.zip (Size: 1.08 MB / Downloads: 157)
.zip   KCS_A32PRO_V3.9.1.zip (Size: 1.05 MB / Downloads: 68)
.zip   KCS_AG8_V3.9.1.zip (Size: 1.04 MB / Downloads: 73)
.zip   KCS_B8M_V3.9.1.zip (Size: 1.07 MB / Downloads: 58)
.zip   KCS_B16_V3.9.1.zip (Size: 1.07 MB / Downloads: 75)
.zip   KCS_B16M_V3.9.1.zip (Size: 1.07 MB / Downloads: 61)
.zip   KCS_F8_V3.9.1.zip (Size: 1.06 MB / Downloads: 76)
.zip   KCS_F16_V3.9.1.zip (Size: 1.08 MB / Downloads: 79)
.zip   KCS_F24_V3.9.1.zip (Size: 1.08 MB / Downloads: 56)
.zip   KCS_G1_V3.9.1.zip (Size: 1.03 MB / Downloads: 62)
.zip   KCS_KC_TA_V3.9.1.zip (Size: 1.03 MB / Downloads: 77)
.zip   KCS_T16M_V3.9.1.zip (Size: 1.02 MB / Downloads: 78)
Print this item

  KC868-A16 - Maximum output current per channel
Posted by: iwjcs - 04-11-2025, 02:15 AM - Forum: KC868-A16 - Replies (1)

Please, I wanted to use the output channel of the A16 to turn on or off the camera when needed. What is the maximum current supported for each mosfet output channel?

Print this item

  Driver recommendation for 24V LED strip
Posted by: TMaYaD - 04-10-2025, 10:41 PM - Forum: DIY Project - Replies (5)

Hi
I want to control and dim 24v LED strips using a controller like KC868-A4S. I'm looking for any recommendations for drivers.

I've tried Meanwell ELG-200-24B. But it doesn't turn off completely.

Any inputs are appreciated.

Print this item

  KC868-A4S and meanwell ELG-200-24B
Posted by: TMaYaD - 04-10-2025, 10:25 PM - Forum: KC868-A series and Uair Smart Controller - Replies (3)

I'm trying to use meanwell ELG-200-24B to drive 24v LED drive strips using A4S and the LED does not completely turn off. When I checked, there is ~0.58V across the analog output and ground.

What am I doing wrong?

Print this item

  IoT Weather Station - Class B
Posted by: egionet - 04-10-2025, 01:26 PM - Forum: Customer project example - Replies (1)

This is an ongoing project, and I plan to deploy the station in a month or so.  This setup leverages class B scientific grade meteorological instruments polled over serial MODBUS.  The controller enclosure's environment is monitored by a Kilcony RS-485 temperature and relative humidity RTU, and barometric pressure is monitored by a BMP280 over I2C.  The code base is in C i.e. ESP-IDF, and a sample implementation is available here.

Telemetry data model:

Code:
typedef struct rpu_telemetry_data_s {
    uint64_t    timestamp;
    struct rpu_s {
        char        network_id[16];
        char        name[32];
        uint32_t    system_uptime;
        uint64_t    reboot_timestamp;
        uint16_t    reboot_counter;
    } rpu;
    struct atmospheric_s {
        float                   spot_wind_speed;
        uint16_t                spot_wind_direction;
        float                   avg_wind_speed;
        uint16_t                avg_wind_direction;
        float                   max_wind_speed;
        uint16_t                max_wind_direction;
        float                   air_temperature;
        float                   relative_humidity;
        float                   dewpoint_temperature;
        float                   barometric_pressure;
        float                   precipitation_rate;
        hyrs2e_precip_types_t   precipitation_type;
    } atmospheric;
    struct ground_s {
        float   soil_temperature;
    } ground;
    struct cabinet_s {
        float   air_temperature;
        float   relative_humidity;
        float   dewpoint_temperature;
        cabinet_door_states_t door_status;
    } cabinet;
} rpu_telemetry_data_t;

Telemetry data is uploaded to ThingSpeak once a minute over MQTT when connected to a Wi-Fi network.


           

Print this item

  How to uses sensors with v3 firmware
Posted by: twostar - 04-10-2025, 01:23 PM - Forum: "KCS" v3 firmware - Replies (13)

I'm having trouble using DHT22 sensors with the v3 firmware, with the v2 firmware you just set sensor ID 1, type DHT22 and it worked.  With the v3 firmware it looks like you need to set a GPIO address but there's no indication for what this should be, and trying the first one, 47, bricked the board. How do you set up a DHT22 (or any other sensor) on the 1-wire GPIO ports?

Print this item

  JST XH2.54 to QWIIC Wiring Harness
Posted by: egionet - 04-10-2025, 04:32 AM - Forum: Customer project example - No Replies

Simple solution to convert JST XH2.54 I2C port connector to QWIIC.

Breadboard QWIIC cable adapter

JST XH2.54 Female 4-pin Cable Adapter

Solder JST XH2.54 adapter wires to the QWIIC breadboard:

  • Black to 3.3V
  • Green to GND
  • White to SCL
  • Red to SDA

   

Print this item

  "KCS" v3.9.0 firmware BIN file download
Posted by: admin - 04-10-2025, 01:25 AM - Forum: "KCS" v3 firmware - Replies (3)

v3.9.0 improvement:

1. fixed wifi can't disable in "AP" mode.
2. add support new controller F8 & A2v3 & A8v3 & B8M & TA



Attached Files
.zip   KCS_A2V3_V3.9.0.zip (Size: 1.03 MB / Downloads: 62)
.zip   KCS_A6V3_V3.9.0.zip (Size: 1.01 MB / Downloads: 70)
.zip   KCS_A8V3_V3.9.0.zip (Size: 1.06 MB / Downloads: 60)
.zip   KCS_A16V3_V3.9.0.zip (Size: 1.08 MB / Downloads: 77)
.zip   KCS_A32PRO_V3.9.0.zip (Size: 1.05 MB / Downloads: 59)
.zip   KCS_AG8_V3.9.0.zip (Size: 1.04 MB / Downloads: 56)
.zip   KCS_B8M_V3.9.0.zip (Size: 1.07 MB / Downloads: 55)
.zip   KCS_B16_V3.9.0.zip (Size: 1.07 MB / Downloads: 61)
.zip   KCS_B16M_V3.9.0.zip (Size: 1.07 MB / Downloads: 52)
.zip   KCS_F8_V3.9.0.zip (Size: 1.06 MB / Downloads: 56)
.zip   KCS_F16_V3.9.0.zip (Size: 1.08 MB / Downloads: 58)
.zip   KCS_F24_V3.9.0.zip (Size: 1.08 MB / Downloads: 55)
.zip   KCS_G1_V3.9.0.zip (Size: 1.03 MB / Downloads: 56)
.zip   KCS_KC_TA_V3.9.0.zip (Size: 1.03 MB / Downloads: 67)
.zip   KCS_T16M_V3.9.0.zip (Size: 1.02 MB / Downloads: 56)
Print this item

  KinCony TA Smart Tiny Alarm System released
Posted by: admin - 04-10-2025, 01:09 AM - Forum: News - No Replies

KinCony TA (Tiny Alarm System) ESP32-S3 smart controller based on ESP32-S3-WROOM-1U (N16R8) wifi chip and Tuya module. It have 12 channel digital input (12-zone) and 2 channel relay output for sirens or strobe lights, 12 channel 1-wire GPIOs, DS3231 high precision RTC clock chip.TA added Power over Ethernet (PoE). TA have RS485 port and RF433MHz RF receiver. You can write any code by Arduino IDE / MicroPython / ESP-IDF development tool to ESP32 module. We will supply Arduino demo code for different samples. Everyone can modify and change the code for your own smart home automation system project. it support use by ESPHome for home assistant or tasmota firmware for smart home automation DIY. TA use KCS v3 firmware, it support home assistant auto discovery function by MQTT, so without write any config code (zero code) for home assistant. KCS v3 support Apple HomeKit. Tuya mobile phone APP remote monitor 12 channel digital input port state, 12 channel temperature sensors and control 2 channel relay by internet.
[Image: TA7.jpg]
Model No. KinCony TA
[Image: TA-diagram-1.jpg]
[Image: TA-diagram-2.jpg]
Description: KinCony ESP32-S3 Tiny Alarm System – TA
Power supply: 12V DC
Processor: ESP32-S3-WROOM-1U (N16R8)
Size: 115mm*83mm*45mm
interfaces: Ethernet(RJ45)-LAN 100Mbps IPv4/IPv6 POE,WiFi,RS485,Bluetooth,USB-C,Tuya Module
RTC: DS3231 high precision chip (battery socket on PCB)
Installation method: DIN RAIL

Print this item

  Not able to upload arduino code to A16v3 board
Posted by: ematicenergies - 04-09-2025, 01:14 PM - Forum: KC868-A16v3 - Replies (10)

I am using a kincony A16v3 board for my project. I have tried to upload my arduino code to the board. But the code is not uploading. I have powered the board with 12v supply. And have connected the board to my pc via usb type c cable. 

Chosen nodemcu 32s in boards. But its not working. How to check what have gone wrong ?. Or if any further details required, let me know

Print this item