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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 8,715
» Latest member: marriagebz
» Forum threads: 3,821
» Forum posts: 19,551

Full Statistics

Online Users
There are currently 58 online users.
» 0 Member(s) | 46 Guest(s)
AhrefsBot, Amazonbot, Bytespider, bot

Latest Threads
KC868-HAv2 work with F24 ...
Forum: KC868-HA /HA v2
Last Post: admin
7 hours ago
» Replies: 13
» Views: 1,201
sample code to receive ht...
Forum: F16
Last Post: telinda
Yesterday, 01:22 PM
» Replies: 15
» Views: 632
N10 port modbus
Forum: N10
Last Post: admin
Yesterday, 08:23 AM
» Replies: 11
» Views: 109
N60/N30/N20/N10 PC softwa...
Forum: N60
Last Post: admin
Yesterday, 08:22 AM
» Replies: 3
» Views: 609
N60 N30 N20 N10 ARM CPU f...
Forum: N60
Last Post: admin
Yesterday, 08:17 AM
» Replies: 0
» Views: 11
KinCony ALR ESP32 I/O pin...
Forum: KinCony ALR
Last Post: admin
Yesterday, 01:29 AM
» Replies: 6
» Views: 1,546
KC868-A6v3 ESP32-S3 6 cha...
Forum: KC868-A6
Last Post: admin
Yesterday, 01:27 AM
» Replies: 1
» Views: 27
RF fo KC868-A6
Forum: KC868-A6
Last Post: admin
Yesterday, 01:27 AM
» Replies: 5
» Views: 816
Device change after damag...
Forum: Getting Started with ESPHome and Home Assistant
Last Post: admin
03-05-2026, 09:35 PM
» Replies: 1
» Views: 16
KinCony B32M Smart Contro...
Forum: News
Last Post: admin
03-05-2026, 01:44 AM
» Replies: 0
» Views: 23

  KC868-H32B Pro work with KC868-COLB by RS232 cable
Posted by: admin - 02-17-2023, 05:49 AM - Forum: Schematic & diagram & Dimensions of KinCony PCB layout CAD file - No Replies

   
   

Print this item

  HB868 32 pro MQTT feedback and multiple clicks
Posted by: leliodm - 02-16-2023, 07:55 PM - Forum: KC868-HxB series Smart Controller - Replies (5)

Hi,
I was able to connect my hb868 32 pro to my local mqtt.
I have few questions
1. the mqtt broker seems to work only on wifi - when I try to configure the local ip on the ethernet interface it does not change the default ip. is this the case?
2. is it possible to configure a feedback on mqtt of the pressed button? like, when I press my switch 3 to send an mqtt message that relay3 is on. 
3. how can I configure the behavior for multiple clicks?

Thank you!

Print this item

  Read Anolog PIN A3,A4
Posted by: rha - 02-16-2023, 04:35 PM - Forum: KC868-A4 - Replies (1)

Hi,

i use this simple code for read value from pins anolog input (0-5V) PIN A3 and A4. At pin A3 connect 0V at pin A4 connect stable 2.5 V and reading value.

#define ANALOG_PIN_A3  32
#define ANALOG_PIN_A4  33

void setup() {
  // put your setup code here, to run once:
Serial.begin(115200);
pinMode(ANALOG_PIN_A3,INPUT);
pinMode(ANALOG_PIN_A4,INPUT);
}
int analog_value_3 = 0;
int analog_value_4 = 0;
void loop() {
  // put your main code here, to run repeatedly:
analog_value_3 = analogRead(ANALOG_PIN_A3);
analog_value_4 = analogRead(ANALOG_PIN_A4);
Serial.printf("Current reading on Pin (%d)=%d\n",ANALOG_PIN_A3,analog_value_3);
Serial.printf("Current reading on Pin (%d)=%d\n",ANALOG_PIN_A4,analog_value_4);

delay(2000);
}



At serial monitor i see this result

Current reading on Pin (33)=1889
Current reading on Pin (32)=0
Current reading on Pin (33)=1872
Current reading on Pin (32)=0
Current reading on Pin (33)=1875
Current reading on Pin (32)=0
Current reading on Pin (33)=1875
Current reading on Pin (32)=0
Current reading on Pin (33)=1872
Current reading on Pin (32)=0
Current reading on Pin (33)=1920
Current reading on Pin (32)=0
Current reading on Pin (33)=1872
Current reading on Pin (32)=0
Current reading on Pin (33)=1873
Current reading on Pin (32)=0
Current reading on Pin (33)=1879
Current reading on Pin (32)=0
Current reading on Pin (33)=1872
Current reading on Pin (32)=0
Current reading on Pin (33)=1872
Current reading on Pin (32)=0
Current reading on Pin (33)=1873
Current reading on Pin (32)=0
Current reading on Pin (33)=1888
Current reading on Pin (32)=0
Current reading on Pin (33)=1871
Current reading on Pin (32)=0
Current reading on Pin (33)=1865



VALUE of PIN 4 (33)  is NOT STABLE the value varies, it pulsates +/-20 or more, max 1920 , minimum 1865. It is normaly ? Can i solve it ?

THX

RHA

Print this item

  KC868-A6 LoRaWAN pinout issue
Posted by: Alpha - 02-16-2023, 01:35 PM - Forum: KC868-A6 - Replies (7)

Hello,
I'm trying to use MCCI LoRaWAN LCCI library to connect to the Things Network, however the library requires IO1 pin of the SX1278 module to be connected to an GPIO of the ESP32.

I soldered a wire from SX1278 IO1 to ESP32 GPIO13 as that appears free and looks like a suitable pin.  However after doing that, the serial port would no longer appear on my PC, when i removed the jumper wire everything returned to normal.

Can you suggest any solutions?  Is GPIO13 ok for use?

Thanks in advance.

Alex

Print this item

  How to utilize IO17 and IO16
Posted by: marcovasqz - 02-16-2023, 03:12 AM - Forum: KC868-A4 - Replies (4)

Hi all,

I want to measure Carbon dioxide PPM levels using the MH-Z19B sensor with my KC868-A4. The sensor uses UART and that means I need to use IO17 (#28 U2T) and IO16 (#27 U2R) but these are being used in the RS232 connector:

   

I see that I can easily use the IO16 (Number 9 from above picture) from the DB9 connector, but I don't know what is happening to IO17 (Number 10 from above picture).

To summarize my question, how can I utilize IO17 and IO16 from a KC868-A4 board? Is it even possible to use MH-Z19B sensor with it? I'm using Tasmota on it.

I'm apologize if this is a dumb question, I'm new to all this.


Thank you in advance

Print this item

  KC868-A8 12v output?
Posted by: hornzi - 02-16-2023, 02:43 AM - Forum: KC868-A8 - Replies (3)

Hey!

Im new and just discovered the Kincony relays and its probably the best solution for my problem

My goal is basically: I want to be able to get an event in home assistant when I press the RF remote or a toggle switch to open the garage/gate door, so I can create an automation primarily to turn on the lights at night
I would only use the Kincony relay for the garage door and gate, my lights are already connected to home assistant

eg
toggle switch button was pressed, garage door opens -> turn on lights for 5min
or RF remote button was pressed, garage door opens -> turn on lights for 5min

Im a bit confused on 2 things
It says on the website the outputs are "277VAC 10A, 125VAC 12A", and I see nearly all other relay described as AC output aswell, the garage door and the gate is a 12v relay, can I still connect it?
When I connect a normal toggle light switch on the inputs to open the garage, can I set it up in "hold" and "toggle" mode or how is that managed? 

Thank you!

Print this item

  KC868-A16 home assistant demo configuration.yaml by MQTT
Posted by: admin - 02-16-2023, 01:33 AM - Forum: "KCS" v2 firmware system - Replies (16)

Here is KC868-A16 integrate with home assitstant by MQTT via "KCS" v1.0.15 firmware.


.txt   A16-mqtt-home-assistant.txt (Size: 9.33 KB / Downloads: 1685)

[Image: attachment.php?aid=1916]   
[Image: attachment.php?aid=1917]   
[Image: attachment.php?aid=1918]   
[Image: attachment.php?aid=1919]   
[Image: attachment.php?aid=1920]

Print this item

  KinCony Blind switch panel
Posted by: Shaps77 - 02-15-2023, 10:34 AM - Forum: Schematic & diagram & Dimensions of KinCony PCB layout CAD file - Replies (13)

   

Is there some more technical information on this switch? I've recently ordered (still awaiting arrival) a KC868-A32 for controlling my blinds and was wondering how/if this panel could be hard-wired to the A32...?

Print this item

  Schematic of Power Distribution Box Made by KC868-H32B Pro+KC868-E16v2+KC868-AK
Posted by: admin - 02-15-2023, 05:16 AM - Forum: Schematic & diagram & Dimensions of KinCony PCB layout CAD file - Replies (4)

   
   

Print this item

  KC868-H16B Status over TCP
Posted by: v1rtus - 02-11-2023, 10:25 PM - Forum: KC868-HxB series Smart Controller - Replies (3)

I have a KC868-H16B relay controller, the mode is TCP Server.
I am trying to achieve that the controller will send it's status to the server that is put in Ethernet Setting. Does it work like that in the TCP Server mode and how to get the value for example using Nodered?

Thank you in advance!
Vladimir

Print this item