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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,368
» Latest member: Danyscott
» Forum threads: 2,574
» Forum posts: 13,313

Full Statistics

Online Users
There are currently 47 online users.
» 0 Member(s) | 31 Guest(s)
Applebot, Bing, Bytespider, Crawl, DataForSeoBot, Google, Yandex, bot, owler

Latest Threads
How can I power multiple ...
Forum: KC868-A series and Uair Smart Controller
Last Post: ingersoj
3 hours ago
» Replies: 11
» Views: 121
how to use AS ESP32-S3 vo...
Forum: KinCony AS
Last Post: biofects
4 hours ago
» Replies: 13
» Views: 456
change wake up name
Forum: KinCony AS
Last Post: admin
5 hours ago
» Replies: 13
» Views: 95
Problem with IFTTT automa...
Forum: "KCS" firmware system
Last Post: admin
7 hours ago
» Replies: 6
» Views: 45
A32 Pro ESPHome yaml incl...
Forum: KC868-A32/A32 Pro
Last Post: admin
8 hours ago
» Replies: 18
» Views: 185
KC868-A2 ESP32 I/O pin de...
Forum: KC868-A2
Last Post: admin
8 hours ago
» Replies: 8
» Views: 2,266
Need help with configurat...
Forum: KC868-HxB series Smart Controller
Last Post: admin
Yesterday, 04:32 AM
» Replies: 32
» Views: 396
ESP32 S3 set up issue
Forum: Extender module
Last Post: admin
12-17-2024, 11:43 PM
» Replies: 10
» Views: 69
KC868-A8 Schematic
Forum: KC868-A8
Last Post: admin
12-17-2024, 11:40 PM
» Replies: 7
» Views: 51
"KCS" v2.2.8 firmware BIN...
Forum: "KCS" firmware system
Last Post: admin
12-17-2024, 11:38 PM
» Replies: 2
» Views: 179

  wire ceiling sensor and colored panel switch
Posted by: engmohades - 02-21-2023, 11:47 AM - Forum: Suggestions and feedback on KinCony's products - Replies (5)

Is it possible to manufacture a wire ceiling sensor that contains
pir sensor
teampracticer sensor
ir sender
lux sensor
rs485

Manufacture of a colored panel switch that contains pages to control lighting, curtains, air conditioners and ....

Print this item

  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" 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 and diagram - 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