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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 9,558
» Latest member: ad889com
» Forum threads: 4,183
» Forum posts: 20,807

Full Statistics

Online Users
There are currently 36 online users.
» 0 Member(s) | 23 Guest(s)
Amazonbot, Baidu, Crawl, DataForSeoBot, Google, PetalBot, bot

Latest Threads
K868-a32 plastic case
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
3 hours ago
» Replies: 3
» Views: 1,170
CT Clamp Compatibility
Forum: KC868-M16 / M1 / MB / M30
Last Post: admin
Yesterday, 10:32 PM
» Replies: 10
» Views: 1,625
KinCony F8 + ESPHome: Una...
Forum: F8
Last Post: admin
08-08-2026, 11:51 PM
» Replies: 6
» Views: 74
How to get started
Forum: KC868-A16
Last Post: admin
08-07-2026, 11:42 PM
» Replies: 39
» Views: 9,627
Questions on the B4M
Forum: B4M
Last Post: admin
08-07-2026, 11:19 PM
» Replies: 3
» Views: 197
cannot see KC868-A6 in ro...
Forum: "KCS" v2 firmware system
Last Post: admin
08-07-2026, 09:59 AM
» Replies: 7
» Views: 277
CAN-BUS Transceiver
Forum: T16M
Last Post: admin
08-07-2026, 09:57 AM
» Replies: 1
» Views: 10
N60 configure yaml for ES...
Forum: N60
Last Post: chuyskywalker
08-06-2026, 07:18 AM
» Replies: 5
» Views: 1,781
KC868-A16
Forum: "KCS" v2 firmware system
Last Post: 5310h
08-05-2026, 09:40 PM
» Replies: 9
» Views: 3,021
KC868-A16 UART pins
Forum: KC868-A series and Uair Smart Controller
Last Post: meowdokugame
08-04-2026, 07:40 AM
» Replies: 2
» Views: 604

  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: 888)

Print this item

Lightbulb [Arduino IDE demo source code for KC868-AG]--#03--IR send code
Posted by: KinCony Support - 01-27-2022, 02:08 AM - Forum: KC868-AG / AG Pro / AG8 / Z1 - No Replies

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

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

void setup() {

  Serial.begin(9600);
  IrSender.begin(IR_SEND_PIN, ENABLE_LED_FEEDBACK);// IR_SEND_PIN is defined in PinDefinitionsAndMore.h file

}

  uint16_t sAddress = 0x78;
  uint8_t sCommand = 0xCD;
  uint8_t sRepeats = 0;

void loop() {
  IrSender.sendNEC(sAddress, sCommand, sRepeats);
  delay(1000);
}

   
you can download the zip file.


.zip   KC868-AG_IR_send.zip (Size: 3.14 KB / Downloads: 914)

Print this item

Lightbulb [Arduino IDE demo source code for KC868-AG]--#02 433Mhz receive code
Posted by: KinCony Support - 01-27-2022, 01:36 AM - Forum: KC868-AG / AG Pro / AG8 / Z1 - No Replies

Code 2: //The demo code is 433Mhz receive code   You can copy the code to your Arduino IDE

Code:
#include <RCSwitch.h>

RCSwitch mySwitch = RCSwitch();

void setup() {
  Serial.begin(9600);
  mySwitch.enableReceive(digitalPinToInterrupt(13));// IO13  433 RECEIVE PIN
}

void loop() {
  if (mySwitch.available()) {
   
    Serial.print("Received ");
    Serial.print( mySwitch.getReceivedValue() );
    Serial.print(" / ");
    Serial.print( mySwitch.getReceivedBitlength() );
    Serial.print("bit ");
    Serial.print("Protocol: ");
    Serial.println( mySwitch.getReceivedProtocol() );

    mySwitch.resetAvailable();
  }
}
   
.zip   RF-receiver.zip (Size: 393 bytes / Downloads: 873)

Print this item