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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,971
» Latest member: itzgreenpoiis0
» Forum threads: 2,423
» Forum posts: 12,543

Full Statistics

Online Users
There are currently 48 online users.
» 2 Member(s) | 27 Guest(s)
Bing, Bytespider, Crawl, Google, PetalBot, Semrush, WordPress/, Yandex, bot, Philadam, Vega

Latest Threads
Sms relays control
Forum: KC868-A8S
Last Post: Michele
10 hours ago
» Replies: 6
» Views: 21
new home automation
Forum: DIY Project
Last Post: admin
11 hours ago
» Replies: 1
» Views: 7
Energy consumption not me...
Forum: KC868-M16 / M1 / MB / M30
Last Post: sebastianfs
Today, 05:26 AM
» Replies: 2
» Views: 30
M30 energy consumption no...
Forum: KC868-M16 / M1 / MB / M30
Last Post: admin
Yesterday, 11:51 PM
» Replies: 1
» Views: 8
[Arduino IDE demo source ...
Forum: KC868-A16
Last Post: admin
Yesterday, 11:49 PM
» Replies: 10
» Views: 2,948
KC868-A8 board esphome + ...
Forum: KC868-A8
Last Post: admin
Yesterday, 11:47 PM
» Replies: 9
» Views: 50
Nextion display work with...
Forum: KC868-A4
Last Post: admin
Yesterday, 11:47 AM
» Replies: 5
» Views: 1,924
New KC868-A32 Arduino ESP...
Forum: Suggestions and feedback on KinCony's products
Last Post: admin
Yesterday, 11:45 AM
» Replies: 3
» Views: 16
A16 and HC-SR04
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
Yesterday, 11:44 AM
» Replies: 1
» Views: 27
KC868-A4 with Nextion 5 i...
Forum: KC868-A4
Last Post: YOO SEOK
Yesterday, 01:54 AM
» Replies: 2
» Views: 2,823

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

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

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

Print this item

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

Code 1: //The demo code is RF-send  You can copy the code to your Arduino IDE

Code:
#include <RCSwitch.h>
RCSwitch mySwitch = RCSwitch();

void setup() {
  Serial.begin(9600);
  mySwitch.enableTransmit(digitalPinToInterrupt(22)); //IO22 433Mhz send pin
}

void loop() {
  mySwitch.switchOn("11111", "00010");
  delay(1000);
  mySwitch.switchOff("11111", "00010");
  delay(1000);

  mySwitch.send(5393, 24);
  delay(1000); 
  mySwitch.send(5396, 24);
  delay(1000); 

  mySwitch.send("000000000001010100010001");
  delay(1000); 
  mySwitch.send("000000000001010100010100");
  delay(1000);

  mySwitch.sendTriState("00000FFF0F0F");
  delay(1000); 
  mySwitch.sendTriState("00000FFF0FF0");
  delay(1000);
}
   

.zip   433-sender-code.zip (Size: 811 bytes / Downloads: 257)

Print this item

  H32BS and COLB communication
Posted by: autind - 01-27-2022, 12:25 AM - Forum: KC868-HxB series Smart Controller - Replies (13)

1st - To use KCB868-H32BS connected to KCB868-COLB, with RS485 - Modbus communication, what network configurations are necessary?

2nd - Using the COLB with mqtt protocol, how to read the analog values?


3rd - To use COLD using SCADA software, which mosbus is it possible to use, RTU or TCPip?
Is it possible to configure the master-slave mode and the controller Id?

Print this item

  What i need and how communicate , and other ques.
Posted by: tahmasbi - 01-26-2022, 01:30 PM - Forum: KC868-HxB series Smart Controller - Replies (1)

1-  can i use single pole wall switch (mechanical switch) .
2-If i use small ethernet relay installed under the wall switch for each room and connect the other side of ethernet to an switch is less expensive than all 'L' wires goes from DB for each light , because in first case it will have only on 'L' wire and all other switches in same room take from it , That's true or not?
3-What exactly needs to control house with 80 light switch (each switch my control 4 or 6 bulbs) , and control it from PC and from App?
4-Are there a way to control the thermostat?
5-Is the wire goes  from KC868 to the wall switch and then to the 3 bulb?
6-Is there any diagram that shows not only inside the DB , But also how to goes to wall switch and then to bulb?

Print this item

  Chain KC868-H32B and KC868-H32L
Posted by: tdh - 01-26-2022, 07:08 AM - Forum: KC868-HxB series Smart Controller - Replies (3)

Hi, 

I have both the KC868-H32B and KC868-H32L. 

Is it possible to extend / chain the two controllers so i have 64 relay's? 

And is it then also possible to control them over HTTP like : 
http://192.168.1.10/sw_ctl.cgi?Relay64=ON

Thanks!!

Print this item