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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 9,682
» Latest member: hi88game3
» Forum threads: 4,195
» Forum posts: 20,848

Full Statistics

Online Users
There are currently 16 online users.
» 0 Member(s) | 12 Guest(s)
Crawl, bot

Latest Threads
N60 configure yaml for ES...
Forum: N60
Last Post: admin
08-23-2026, 01:42 AM
» Replies: 7
» Views: 1,904
KCS VERSUS ESPHOME
Forum: "KCS" v3 firmware
Last Post: EDVALDO DE MARINGA
08-22-2026, 01:31 PM
» Replies: 2
» Views: 52
KC868-AGv3
Forum: Getting Started with ESPHome and Home Assistant
Last Post: admin
08-20-2026, 10:18 PM
» Replies: 5
» Views: 120
[arduino code examples fo...
Forum: KC868-A32/A32 Pro
Last Post: huanmarie
08-19-2026, 07:09 AM
» Replies: 2
» Views: 1,619
KC868-H32B V5.08 firmware
Forum: News
Last Post: meoowu77
08-18-2026, 11:46 AM
» Replies: 24
» Views: 8,476
KinCony B2 Smart Controll...
Forum: News
Last Post: admin
08-17-2026, 01:07 PM
» Replies: 0
» Views: 67
KC868-A8v3 PCB layout CAD...
Forum: Schematic & diagram & Dimensions of KinCony PCB layout CAD file
Last Post: admin
08-17-2026, 08:44 AM
» Replies: 0
» Views: 88
CT Clamp Compatibility
Forum: KC868-M16 / M1 / MB / M30
Last Post: admin
08-16-2026, 11:08 PM
» Replies: 12
» Views: 2,211
N60 Sensor channel label
Forum: N60
Last Post: marekd1
08-14-2026, 09:14 PM
» Replies: 18
» Views: 2,575
solar production and cons...
Forum: N30
Last Post: admin
08-14-2026, 01:46 AM
» Replies: 3
» Views: 178

  questions!
Posted by: sdke - 02-05-2022, 08:47 AM - Forum: KC868-A series and Uair Smart Controller - Replies (17)

Hello

I'm looking to buy the KC868-A16 for my home automation. 
My current switches use 24v hardwired. So when pressed a 24v channel goes and turns on the light.

Can I use that signal and put in the digital input so I know that the button is pressed? And when it's pressed use the KC868-A16 to send a digital output signal of 24v to turn it on?

thanks in advance

Print this item

  How to use RF command on KC868 - H32BS controller
Posted by: autind - 02-05-2022, 12:54 AM - Forum: KC868-HxB series Smart Controller - Replies (5)

 How to use and configure RF command reception and transfer for the H32BS controller?

Print this item

  Kincony KC868-A4: ультимативный гайд. Часть 2. Программирование компонентов
Posted by: admin - 02-04-2022, 06:14 AM - Forum: KC868-A4 - No Replies

Kincony KC868-A4: ультимативный гайд. Часть 2. Программирование компонентов
https://habr.com/ru/company/ruvds/blog/647119/

Print this item

  tasmota - KC868-A16
Posted by: bencornish - 02-03-2022, 07:50 AM - Forum: KC868-A16 - Replies (4)

Hi,

a couple of things.. Is there a tasmota image ?

Is there also any sample arduino code for this board ? 

Thanks

Print this item

  Kincony KC868-A4: ультимативный гайд. Часть 1. Обзор и железо
Posted by: admin - 02-01-2022, 02:19 PM - Forum: KC868-A4 - No Replies

Kincony KC868-A4: ультимативный гайд. Часть 1. Обзор и железо
https://habr.com/ru/company/ruvds/blog/646923/

Print this item

  KC868-H16B
Posted by: Михаил - 01-29-2022, 06:08 PM - Forum: KC868-HxB series Smart Controller - Replies (1)

Does not work in WI-FI server mode
from my smartphone I can't see the controller in the window of available WI-FI networks
I pressed the WI-FI server button. the green LED flashes, but there is no result
What's the matter?
connection modes are also poorly switched, both on WI-FI and wired connection (Client,server, UDP)
In the client function when connected via cable, it is also not controlled

Print this item

  KC868-H16B
Posted by: Михаил - 01-29-2022, 06:01 PM - Forum: KC868-HxB series Smart Controller - No Replies

Добрый день

Print this item

  KC868-H32BS v 1.44 x PZEM 017 DC
Posted by: rodrigomallmann - 01-28-2022, 01:03 PM - Forum: KC868-HxB series Smart Controller - Replies (4)

Hello, I would like to know if it is possible to use the RS485 port to receive the reading data from a pzem 017 dc to integrate with the Home Assistant using MQTT. Thanks.

Print this item

  KC868-H32BS v 1.44 x MQTT
Posted by: rodrigomallmann - 01-27-2022, 01:24 PM - Forum: KC868-HxB series Smart Controller - Replies (3)

Hello all right, I'm starting to integrate kc868-h32bs v1.44 via mqtt in home assistant v2021.12.10. However, when I check if the settings in the configuration.yaml file are correct.

Invalid config for [switch]: required key not provided @ data['platform']. Got None. (See /config/configuration.yaml, line 28).



Attached Files Thumbnail(s)
   
Print this item

Lightbulb [Arduino IDE demo source code for KC868-AG]--#04--IR receive code
Posted by: KinCony Support - 01-27-2022, 02:34 AM - Forum: KC868-AG / AG Pro / AG8 / Z1 - Replies (1)

Code 3: //The demo code is  IR receive code   You can copy the code to your Arduino IDE

Code:
#include "PinDefinitionsAndMore.h"
#include <IRremote.h>

void setup() {

  Serial.begin(9600);
  IrReceiver.begin(IR_RECEIVE_PIN, ENABLE_LED_FEEDBACK, USE_DEFAULT_FEEDBACK_LED_PIN);
      //IR_RECEIVE_PIN is defined in PinDefinitionsAndMore.h file   IO23
}

void loop() {


    if (IrReceiver.decode()) {

       IrReceiver.printIRResultShort(&Serial);
        if (IrReceiver.decodedIRData.protocol == UNKNOWN) {
            IrReceiver.printIRResultRawFormatted(&Serial, true);
        }
        Serial.println();
     IrReceiver.resume();

    }
}

   

.zip   KC868-AG-IR_receive.zip (Size: 2.54 KB / Downloads: 918)

Print this item