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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 8,788
» Latest member: pipingmaterial
» Forum threads: 3,846
» Forum posts: 19,676

Full Statistics

Online Users
There are currently 11 online users.
» 0 Member(s) | 6 Guest(s)
Amazonbot, bot

Latest Threads
AS-ESP32-S3 won't initial...
Forum: Getting Started with ESPHome and Home Assistant
Last Post: scottq
1 hour ago
» Replies: 4
» Views: 29
SHT30 temp/humidity i2c s...
Forum: B8
Last Post: admin
10 hours ago
» Replies: 4
» Views: 18
A24 configure yaml for ES...
Forum: KinCony A24
Last Post: admin
Yesterday, 11:47 PM
» Replies: 21
» Views: 6,701
N60 N30 N20 N10 ARM CPU f...
Forum: N60
Last Post: admin
Yesterday, 11:44 PM
» Replies: 2
» Views: 85
Kincony KC868-A16 (ESP32)...
Forum: KC868-A16
Last Post: admin
Yesterday, 01:55 PM
» Replies: 3
» Views: 34
Advice for DIY underfloor...
Forum: DIY Project
Last Post: admin
Yesterday, 01:53 PM
» Replies: 3
» Views: 29
E16V3 - Dimensions compat...
Forum: Suggestions and feedback on KinCony's products
Last Post: admin
Yesterday, 11:09 AM
» Replies: 3
» Views: 23
ESP32 Smart Controller – ...
Forum: Schematic & diagram & Dimensions of KinCony PCB layout CAD file
Last Post: admin
Yesterday, 11:07 AM
» Replies: 3
» Views: 18
E16v3 - CE
Forum: Suggestions and feedback on KinCony's products
Last Post: ldebacker
Yesterday, 09:52 AM
» Replies: 6
» Views: 215
E16V3 - Cover electrical ...
Forum: Suggestions and feedback on KinCony's products
Last Post: admin
Yesterday, 08:45 AM
» Replies: 1
» Views: 12

  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

  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