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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 9,607
» Latest member: spider hoodie vendor
» Forum threads: 4,193
» Forum posts: 20,835

Full Statistics

Online Users
There are currently 89 online users.
» 0 Member(s) | 71 Guest(s)
AhrefsBot, Amazonbot, Baidu, Bytespider, Checker, Crawl, Google, PetalBot, bot

Latest Threads
KinCony B2 Smart Controll...
Forum: News
Last Post: admin
3 hours ago
» Replies: 0
» Views: 3
KC868-A8v3 PCB layout CAD...
Forum: Schematic & diagram & Dimensions of KinCony PCB layout CAD file
Last Post: admin
7 hours ago
» Replies: 0
» Views: 5
CT Clamp Compatibility
Forum: KC868-M16 / M1 / MB / M30
Last Post: admin
Yesterday, 11:08 PM
» Replies: 12
» Views: 1,784
N60 Sensor channel label
Forum: N60
Last Post: marekd1
08-14-2026, 09:14 PM
» Replies: 18
» Views: 2,244
solar production and cons...
Forum: N30
Last Post: admin
08-14-2026, 01:46 AM
» Replies: 3
» Views: 41
Current direction detecti...
Forum: N30
Last Post: admin
08-14-2026, 01:44 AM
» Replies: 3
» Views: 44
MQTT Discovery: missing s...
Forum: N30
Last Post: admin
08-13-2026, 02:48 PM
» Replies: 1
» Views: 27
ai automation
Forum: KinCony integrate with Loxone home automation
Last Post: mediverticals
08-13-2026, 06:56 AM
» Replies: 0
» Views: 37
Connecting sensors to Kin...
Forum: F16
Last Post: admin
08-13-2026, 12:18 AM
» Replies: 1
» Views: 38
CT Sensor Direction
Forum: N60
Last Post: admin
08-12-2026, 08:14 AM
» Replies: 1
» Views: 48

  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: 416)
.txt   default-code.txt (Size: 618 bytes / Downloads: 427)
.txt   full code.txt (Size: 40.64 KB / Downloads: 379)
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: 891)
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: 735)
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: 704)
Print this item