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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 8,068
» Latest member: ctgalsindian
» Forum threads: 3,556
» Forum posts: 18,241

Full Statistics

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

Latest Threads
A32 Pro
Forum: KC868-A32/A32 Pro
Last Post: admin
1 hour ago
» Replies: 10
» Views: 812
"KCS" v3.15.0 firmware BI...
Forum: "KCS" v3 firmware
Last Post: admin
1 hour ago
» Replies: 4
» Views: 433
temperature humidity sens...
Forum: Extender module
Last Post: admin
Yesterday, 11:58 PM
» Replies: 0
» Views: 7
KC868-A16v3 ESP32-S3
Forum: KC868-A16v3
Last Post: admin
Yesterday, 11:33 PM
» Replies: 1
» Views: 6
KC-868 COLB - I do not se...
Forum: KC868-HxB series Smart Controller
Last Post: admin
Yesterday, 11:32 PM
» Replies: 11
» Views: 594
KC868-A8V3 and ESPHome fi...
Forum: KC868-HxB series Smart Controller
Last Post: admin
Yesterday, 11:30 PM
» Replies: 7
» Views: 51
KC868-A16v3 Issue, No Dis...
Forum: KC868-A16v3
Last Post: admin
Yesterday, 08:28 AM
» Replies: 1
» Views: 16
KinCony T32M Tiny ESP32 S...
Forum: News
Last Post: admin
Yesterday, 12:37 AM
» Replies: 4
» Views: 314
N30 + KCS v3.15.0 firmwar...
Forum: N30
Last Post: HolyKirka
11-13-2025, 11:41 AM
» Replies: 4
» Views: 35
N30+KCS v3.15.0
Forum: "KCS" v3 firmware
Last Post: HolyKirka
11-13-2025, 06:22 AM
» Replies: 6
» Views: 44

  Connection Internet
Posted by: shochif - 10-26-2025, 10:51 AM - Forum: KinCony Server-Mini / Server-16 Raspberry Pi4 relay module - Replies (1)

can i using sim7600E for the main internet an i share the internet using switch base on HomeAssistant???

Print this item

  Z1 Transmit action from. Home Asssistant
Posted by: paulbalinnel - 10-26-2025, 09:06 AM - Forum: KC868-AG / AG Pro / AG8 / Z1 - Replies (11)

Hello, please describe the best way to send an action from HA for RF to be transmitted from Z1.

Currently, I have a TV lift with a remote that has UP, STOP, and DOWN buttons. I have already programmed these as RF1, RF2, and RF3 in KCS. However, they appear in HA as binary sensors, not switches.

TCP and HTTP?

Thanks

Print this item

  Reed water meter
Posted by: mdiessner - 10-25-2025, 05:42 AM - Forum: B16 - Replies (3)

I would like to use this product:
https://www.kincony.com/esp32-s3-16ch-sm...oller.html

In order to read water meter
https://www.transducers.co.za/media/1868...-meter.pdf

Please advise if this is possible, it not what else to use?

The idea is to count every pulse using the digital input, and increasing the count value and storing the value in case of reboot/power failure

Print this item

  KC868-A16
Posted by: eligijus - 10-24-2025, 05:32 AM - Forum: "KCS" v2 firmware system - Replies (8)

Hello, can you upload an example yaml file # DHT22 temperature-humidity sensor integration into home assistant

Print this item

  Problem when connecting USB-C
Posted by: aym55 - 10-23-2025, 06:27 PM - Forum: N10 - Replies (1)

Hello,
I just bought N10 module, i connected it to 24V power and it works. However when i try to put USB-C cable from computer to Kincony for download firmware it suddenly have short cut and my 24V power supply turn off , i must take off usb-c for it to work again, this situation is from early begining.I get deffective Unit ?

Thanks.

Print this item

  Free Sample
Posted by: jamesfreeman - 10-23-2025, 05:58 PM - Forum: Apply for free sample product - No Replies

Hello,

I would like to request a free sample, under conditions A and B. We are a 501c3 non profit educational makerspace in Austin Tx. We would like to develop a home automation class, and I believe your products would be a great platform to use. Please let me know if this works for you.

Print this item

  Cant flash esphom
Posted by: muellerjm - 10-22-2025, 04:31 PM - Forum: B16M - Replies (1)

I bought a B16M device and want to flash esphome. However, when I connect the PC to USB, no USB connection is established. Also, no LED lights up. Is the device defective?

Print this item

  Analog Input NTC
Posted by: Gazura36 - 10-22-2025, 09:22 AM - Forum: KC868-A16 - Replies (3)

Hello,
I’m trying to connect a 10 kΩ NTC temperature sensor to my KC868-A16 board.
Unfortunately, I don’t get any readings at all.
Which GPIO pins are actually used for the analog inputs?

I used the example code from this forum, but I don’t get any plausible values on any pin.
I also tested by connecting each pin to GND to rule out a sensor issue, but the readings still don’t change.

I’m stuck now — what is the correct code to read the analog inputs properly?
Thanks in advance for your help!

Print this item

  IIC Not working
Posted by: Eggman - 10-22-2025, 08:16 AM - Forum: KC868-A series and Uair Smart Controller - Replies (4)

All of a sudden none of my sketches using IIC work on my boards.  In the past I have used the sketch below to scan the IIC bus,  I would expect to see several devices detected by default.  However it just says " "No I2C devices found".  I have tested this on several K868 boards.  How could this happen all of a sudden?  It is due to a change in the Arduino IDE environment?  Is it possible that something has changed withing Wire.h?

Many thanks for any assistance.

Code:
// SPDX-FileCopyrightText: 2023 Carter Nelson for Adafruit Industries
//
// SPDX-License-Identifier: MIT
// --------------------------------------
// i2c_scanner
//
// Modified from https://playground.arduino.cc/Main/I2cScanner/
// --------------------------------------

#include <Wire.h>

// Set I2C bus to use: Wire, Wire1, etc.
#define WIRE Wire

void setup() {
  WIRE.begin();

  Serial.begin(9600);
  while (!Serial)
     delay(10);
  Serial.println("\nI2C Scanner");
}


void loop() {
  byte error, address;
  int nDevices;

  Serial.println("Scanning...");

  nDevices = 0;
  for(address = 1; address < 127; address++ )
  {
    // The i2c_scanner uses the return value of
    // the Write.endTransmisstion to see if
    // a device did acknowledge to the address.
    WIRE.beginTransmission(address);
    error = WIRE.endTransmission();

    if (error == 0)
    {
      Serial.print("I2C device found at address 0x");
      if (address<16)
        Serial.print("0");
      Serial.print(address,HEX);
      Serial.println("  !");

      nDevices++;
    }
    else if (error==4)
    {
      Serial.print("Unknown error at address 0x");
      if (address<16)
        Serial.print("0");
      Serial.println(address,HEX);
    }
  }
  if (nDevices == 0)
    Serial.println("No I2C devices found\n");
  else
    Serial.println("done\n");

  delay(5000);           // wait 5 seconds for next scan
}

Print this item

Photo receive data from switch by RS485 and control output of KC868-A16
Posted by: edg72022 - 10-21-2025, 08:04 PM - Forum: KC868-A16 - Replies (3)

I try to find the way to control Output of KC868-A16.

I found the way to send information from KC868 but not on the other way.

Below a print screen of the way I used to do it.
and the link of data information
D8 Switch RS485



Attached Files Thumbnail(s)
       

.pdf   D8 Switch RS485(XH)-Hotel polling-2022.12.16.pdf (Size: 619.95 KB / Downloads: 60)
Print this item