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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 9,232
» Latest member: goldbuyer01
» Forum threads: 4,097
» Forum posts: 20,542

Full Statistics

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

Latest Threads
KCS v3 - Remote modificat...
Forum: KC868-A16
Last Post: vsadnik11
4 hours ago
» Replies: 6
» Views: 56
KinCony Pi5M8 – Raspberry...
Forum: News
Last Post: admin
10 hours ago
» Replies: 0
» Views: 7
Need Advice for New 3-Flo...
Forum: Suggestions and feedback on KinCony's products
Last Post: admin
Yesterday, 02:58 AM
» Replies: 1
» Views: 20
N series Energy Meter for...
Forum: N60
Last Post: admin
06-18-2026, 12:49 PM
» Replies: 2
» Views: 118
Request for free sample
Forum: Apply for free sample product
Last Post: oscarsoler
06-18-2026, 09:02 AM
» Replies: 0
» Views: 9
KCS v2 relay state after ...
Forum: "KCS" v2 firmware system
Last Post: admin
06-18-2026, 04:33 AM
» Replies: 1
» Views: 29
Multiple phase L1,L2,L3
Forum: N20
Last Post: admin
06-18-2026, 02:35 AM
» Replies: 7
» Views: 373
Request for 230VAC LEDs /...
Forum: Development
Last Post: admin
06-17-2026, 11:09 PM
» Replies: 5
» Views: 68
KC868-a6 2 analog output...
Forum: KC868-A6
Last Post: admin
06-17-2026, 01:21 PM
» Replies: 7
» Views: 179
Single-family home automa...
Forum: DIY Project
Last Post: Jan_W
06-16-2026, 06:07 AM
» Replies: 3
» Views: 187

  What is a difference of Digital Input & Dry Contact?
Posted by: abgran - 02-20-2023, 05:19 PM - Forum: KC868-HxB series Smart Controller - Replies (4)

What is a difference of Digital Input & Dry Contact at yours product. Give me the examples. Because i'm confused. Sorry i'm new in your product. Especially your product is KC868-H32BS.

Print this item

  can i use kcs firmwar with kc868-16T ?
Posted by: engmohades - 02-20-2023, 04:18 AM - Forum: "KCS" v2 firmware system - Replies (7)

can i use kcs firmwar with kc868-16T ?

Print this item

  Relays with power meter
Posted by: kivanov - 02-19-2023, 06:40 PM - Forum: DIY Project - Replies (5)

Hello all,
I'm designing my smart home system. Initially I was planning to use Sonoff SPM-4relays, but then I found Kincony products(relays and dimmers are super cool). Do you plan to create a device that has built in power meter? Something like KC868-H32B Pro, but with 16/20 amps relays + power meter (current and history). I'm gonna start implementing/installing the system in next 3-4 months and I'm wondering what devices are under development.

Keep up the good work Wink

Print this item

  KC868-H32B Pro - Node-Red on Home Assistant debug message every 2 second
Posted by: tekdara - 02-19-2023, 02:13 PM - Forum: Development - Replies (21)

Dear Sir

I have a problem on my Node-red with relay H32B Pro, when i connect to relay and debug it alway run message "RELAY-STATE-255,0, 1,0,0, OK" at every 2 second.
Can you tell me what wrong?



Attached Files Thumbnail(s)
   
Print this item

  KC868-H32BS
Posted by: Philadam - 02-19-2023, 01:53 AM - Forum: Suggestions and feedback on KinCony's products - Replies (9)

Any plans on making a KC868-H16BS or KC868H8BS?

Print this item

  How can the dashboard be customized for each user?
Posted by: engmohades - 02-18-2023, 12:03 PM - Forum: Home automation training courses - Replies (1)

In the case of using the home assistant

How can a custom dashboard be made for each user, separate from the other user?
So that no user can access the page of the other user

Print this item

  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