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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 8,862
» Latest member: ipl02
» Forum threads: 3,881
» Forum posts: 19,799

Full Statistics

Online Users
There are currently 23 online users.
» 0 Member(s) | 9 Guest(s)
AhrefsBot, Amazonbot, Applebot, Bing, Bytespider, bot

Latest Threads
Interface T16M E/S et AIO
Forum: News
Last Post: H_spadacini
43 minutes ago
» Replies: 6
» Views: 79
KCS_Z1_V3.24.2.zip firmwa...
Forum: "KCS" v3 firmware
Last Post: admin
9 hours ago
» Replies: 6
» Views: 55
KC868-COLB - How to Conne...
Forum: KC868-HxB series Smart Controller
Last Post: upstream
Yesterday, 11:26 PM
» Replies: 6
» Views: 35
New TA web interface unav...
Forum: TA
Last Post: admin
Yesterday, 11:11 PM
» Replies: 1
» Views: 5
Instal ESP HA with ethern...
Forum: Getting Started with ESPHome and Home Assistant
Last Post: admin
Yesterday, 11:09 PM
» Replies: 3
» Views: 21
KC868-A4 USB not detected...
Forum: KC868-A series and Uair Smart Controller
Last Post: stansvec
Yesterday, 02:04 AM
» Replies: 4
» Views: 1,618
N10 wire case diagram for...
Forum: N10
Last Post: admin
Yesterday, 12:22 AM
» Replies: 0
» Views: 11
"KCS" v2.2.20 firmware BI...
Forum: "KCS" v2 firmware system
Last Post: admin
Yesterday, 12:15 AM
» Replies: 0
» Views: 43
N20 wire case diagram for...
Forum: N20
Last Post: admin
04-02-2026, 11:34 PM
» Replies: 0
» Views: 12
Adding a debounce capabil...
Forum: KC868-A16v3
Last Post: admin
04-02-2026, 11:31 PM
» Replies: 4
» Views: 123

  LCD i2s display on KS868-A16
Posted by: markuutgrunnen - 04-30-2025, 04:31 PM - Forum: KC868-A series and Uair Smart Controller - Replies (5)

Hello,

Who can help me, I have a KS868-A16 I would like 
to connect an I2s display 20x4) and show DS16B20 sensors on the 
display but I can't do it.

i use esphome, I have some DS16B20 sensors and they already work well with KS868-A16.

Greetings Mark

Print this item

  Serial Monitoring
Posted by: joe.sfeir@gmail.com - 04-30-2025, 03:03 AM - Forum: T16M - No Replies

Hi,

I am using Serial.begin() and Serial.println() but I see nothing in my Serial Monitor (Platformio). What could the problem be?

I am using 115200 as monitoring speed (configured in platformio.ini) and my Serial monitor is configured with the same rate.

I am using the demo code below:

Code:
/*
* Made by KinCony IoT: https://www.kincony.com
*
* This program reads 16 input states from a PCF8575 I/O expander and
* controls a corresponding 16-channel relay module. When an input pin
* is LOW, the corresponding relay is turned ON (LOW means ON for the relay).
* When the input pin is HIGH, the corresponding relay is turned OFF.
*
* Pin Definitions:
* - SDA: GPIO 11
* - SCL: GPIO 12
* - Input I2C Address: 0x24
* - Relay I2C Address: 0x25
*/

#include <Wire.h>        // I2C communication
#include <PCF8575.h>     // Library to control the PCF8575 I/O expander

// Define I2C pins
#define SDA 11           // SDA pin
#define SCL 12           // SCL pin

// I2C addresses
#define INPUT_I2C_ADDRESS 0x24   // I2C address for the input PCF8575 module
#define RELAY_I2C_ADDRESS 0x25   // I2C address for the relay PCF8575 module

PCF8575 pcf8575_IN(INPUT_I2C_ADDRESS);    // Create an object for the input PCF8575
PCF8575 pcf8575_RL(RELAY_I2C_ADDRESS);    // Create an object for the relay PCF8575

void setup() {
  // Initialize I2C communication
  Wire.begin(SDA, SCL);

  // Initialize serial communication
  Serial.begin(115200);

  // Initialize input and relay modules
  pcf8575_IN.begin();
  pcf8575_RL.begin();

  // Turn off all relays at the start
  for (int i = 0; i < 16; i++) {
    pcf8575_RL.write(i, LOW);  // Assuming relays are LOW when OFF, setting all relays to OFF initially
  }

  Serial.println("System started: Input state controlling 16 relays");
}

void loop() {
  uint16_t inputState = 0;

  // Read the state of 16 inputs
  for (int i = 0; i < 16; i++) {
    if (pcf8575_IN.read(i)) {
      inputState |= (1 << i);  // If input is HIGH, set the corresponding bit
    } else {
      inputState &= ~(1 << i); // Otherwise, clear the corresponding bit
    }
  }

  Serial.println("Test Point...");

  // Control the relays based on the input state
  for (int i = 0; i < 16; i++) {
    if (inputState & (1 << i)) {
      pcf8575_RL.write(i, HIGH);  // If input is HIGH, turn the relay OFF
    } else {
      pcf8575_RL.write(i, LOW);   // If input is LOW, turn the relay ON
    }
  }

  // Delay for 500 milliseconds
  delay(500);
}


Thanks

Print this item

  RF with KCS-firmware
Posted by: jve91 - 04-29-2025, 05:57 PM - Forum: F16 - Replies (1)

Tried to copy some RF-remotes i had laying around.
I go the RF-page and hit the "learn" button. all i got is a timeout.

Is there anything that needs to be done first to receive the RF-signals?
I tried this running v3.9.1.

Print this item

  Does the KC868-A6 V1.4 board provide a 5V output for DS18B20 sensors?
Posted by: GetBK - 04-29-2025, 12:04 PM - Forum: KC868-A6 - Replies (1)

Hi everyone,
I'm using the Kincony KC868-A6 V1.4 board and planning to connect several DS18B20 temperature sensors. I know these sensors can work with 3.3V, but they tend to be more stable with a 5V power supply—especially when using longer cables.
Does this board provide a dedicated 5V output pin that I can use to power the DS18B20 sensors? If so, where exactly can I find it on the board?
Any help or insights would be greatly appreciated!
Thanks in advance!

Print this item

Exclamation Problems wifi / ESPHome?
Posted by: S.Krans - 04-29-2025, 10:59 AM - Forum: KC868-A128 - Replies (9)

Can somebody test my code my wifi is dropping and cant connect to it after the update esphome


ESPHome Device Builder 
Current version: 2025.4.1

Home Assistant
Core 2025.4.4
Supervisor 2025.04.1
Operating System 15.2
Frontend 20250411.0

Network 
UniFi OS 4.2.9
Network 9.0.114



Attached Files
.txt   koi-rk-kincony-kc868-a128_logs.txt (Size: 12.57 KB / Downloads: 272)
.txt   default-code.txt (Size: 618 bytes / Downloads: 254)
.txt   full code.txt (Size: 40.64 KB / Downloads: 251)
Print this item

  PlatformIO Programming
Posted by: joe.sfeir@gmail.com - 04-29-2025, 10:25 AM - Forum: T16M - Replies (1)

Hi, NooB Here.

Trying to program the ESP32 in PlatformIO:

1. Which ESP32 S3 chip should I configure when creating the project in PlatformIO?

2. How do I make it connect to upload? Do I need to hold a button before uploading? I tried holding the DL button but it didn't connect. Same for the RST button.

Thanks

Print this item

  Relay type - Can I use DC?
Posted by: polarkreis - 04-28-2025, 05:41 PM - Forum: KC868-A32/A32 Pro - Replies (1)

Can I use 24V DC instead of 230V AC on relays?

I would like to use them to activate my 24VDC activated contactor (and then contactor would let 230V AC to pass through).

Print this item

  KC868-A6 PCB layout CAD file
Posted by: admin - 04-28-2025, 12:46 PM - Forum: Schematic & diagram & Dimensions of KinCony PCB layout CAD file - No Replies

KC868-A6 PCB layout CAD file



Attached Files
.zip   KC868_A6_V104SP.zip (Size: 255.69 KB / Downloads: 593)
Print this item

  KC868-A4 PCB layout CAD file
Posted by: admin - 04-28-2025, 12:44 PM - Forum: Schematic & diagram & Dimensions of KinCony PCB layout CAD file - No Replies

KC868-A4 PCB layout CAD file



Attached Files
.zip   KC868-A4-V1.2.6-20250410.zip (Size: 436.78 KB / Downloads: 490)
Print this item

  KC868-A2 PCB layout CAD file
Posted by: admin - 04-28-2025, 12:43 PM - Forum: Schematic & diagram & Dimensions of KinCony PCB layout CAD file - No Replies

KC868-A2 PCB layout CAD file



Attached Files
.zip   KC868-A2-V2.4.zip (Size: 174.83 KB / Downloads: 477)
Print this item