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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,366
» Latest member: mbbreviews
» Forum threads: 2,574
» Forum posts: 13,305

Full Statistics

Online Users
There are currently 53 online users.
» 2 Member(s) | 34 Guest(s)
AhrefsBot, Bing, Crawl, Google, PetalBot, Semrush, Yandex, bot, igurgo, proofreadingservicesuae

Latest Threads
change wake up name
Forum: KinCony AS
Last Post: gal
3 hours ago
» Replies: 12
» Views: 72
A32 Pro ESPHome yaml incl...
Forum: KC868-A32/A32 Pro
Last Post: xarouli5
4 hours ago
» Replies: 17
» Views: 179
Need help with configurat...
Forum: KC868-HxB series Smart Controller
Last Post: admin
6 hours ago
» Replies: 32
» Views: 390
ESP32 S3 set up issue
Forum: Extender module
Last Post: admin
10 hours ago
» Replies: 10
» Views: 60
KC868-A8 Schematic
Forum: KC868-A8
Last Post: admin
11 hours ago
» Replies: 7
» Views: 44
"KCS" v2.2.8 firmware BIN...
Forum: "KCS" firmware system
Last Post: admin
11 hours ago
» Replies: 2
» Views: 163
Dimensions/drawings of bo...
Forum: Schematic and diagram
Last Post: admin
11 hours ago
» Replies: 1
» Views: 20
how to use AS ESP32-S3 vo...
Forum: KinCony AS
Last Post: admin
12-16-2024, 10:55 PM
» Replies: 12
» Views: 446
Problem with IFTTT automa...
Forum: "KCS" firmware system
Last Post: admin
12-16-2024, 10:53 PM
» Replies: 5
» Views: 34
M16 SHT31 sensor disconne...
Forum: KC868-M16 / M1 / MB / M30
Last Post: bsarra
12-16-2024, 08:36 PM
» Replies: 4
» Views: 38

  How to let controller connect to your own MQTT cloud server
Posted by: admin - 10-26-2021, 01:11 AM - Forum: Development - No Replies



1. select a cloud server for MQTT broker, suggest to use Linux server by Amazon AWS or Alibaba cloud.

2. install MQTT broker applicatoin to your server, such as mosquito or EMQ X, chose open source type.

3. allow MQTT ports by cloud server's security group.

4. start MQTT service.

5. set controller's network setting for MQTT Server Domain/IP address, port.

6. use MQTTBox debug tool to send command remote control relay for a testing.


MQTTBox debug tool download: 
https://www.kincony.com/download/client_MQTTBox-win.zip

EMQ X: https://www.emqx.com/en/downloads?product=broker

Print this item

  KC868-H32B V4.39 new firmware update
Posted by: admin - 10-25-2021, 03:00 AM - Forum: News - No Replies

[Image: kc868-h32b_pix550.jpg]
improvement:

support set domain for your own server. old version only set server IP address by number. This verison can set by a server domain name for TCP and MQTT server, added DNS function.

download the ZIP file , unzip update the bin file for KC868-H32B relay controller by USB-RS232 cable.

.zip   Relay32_V439_211024.zip (Size: 46.96 KB / Downloads: 292)
firmware update tool download: https://www.kincony.com/download/KC868-C...loader.zip

Print this item

  Lesson23- How to connect RGB LED strip using ESP32 by KC868-A4 A8
Posted by: admin - 10-25-2021, 12:59 AM - Forum: KC868-A series and Uair Smart Controller - Replies (18)


LED Strip chip model: WS2812B

every LED have R,G,B colors:
every LED cost R: 20mA+G: 20mA+B: 20mA=60mA

if you using 1 meter = 30 LEDs 
total cost:60mA*30=1800mA=1.8A  so chose DC5V 2000mA power supply

if you using 10 meter, so will use 300 LEDS
total cost:60mA*30*10=18000mA=18A  so chose > DC5V 18A power supply

-------------------ESPHome Config---------------------------------------------

esphome:
  name: light_strip_30
  platform: ESP32
  board: esp32dev

wifi:
  ssid: "KinCony"
  password: "a12345678"

  # Enable fallback hotspot (captive portal) in case wifi connection fails
  ap:
    ssid: "KC868-A4 Hotspot"
    password: "12345678"

captive_portal:

# Enable logging
logger:

# Enable Home Assistant API
api:
  password: "1"

ota:
  password: "1"

web_server:
  port: 80
light:
  - platform: fastled_clockless
    chipset: WS2812B
    pin: GPIO13    # Pin Define connected with LED strip
    num_leds: 30  #LEDs number
    rgb_order: GRB
    name: "light_strip_A4"
    effects:
      - addressable_rainbow:        ##defined 7 effects styles
      - addressable_color_wipe:
      - addressable_scan:
      - addressable_twinkle:
      - addressable_random_twinkle:
      - addressable_fireworks:
      - addressable_flicker:

Print this item

  4 channels unit and 1wire port
Posted by: philippe - 10-22-2021, 06:35 PM - Forum: KC868-HxB series Smart Controller - Replies (3)

Hi,
I see that the 4 channels unit has only one 1wire port.
Can you connect several 1wire chips on the same port ( the 1 wire standard protocol)?
Then can you collect with MQTT the temperature(s) from this 1 wire port?
Thank you

Print this item

  Publishing payload_available or payload_not_available topic
Posted by: heyheyhey - 10-22-2021, 07:48 AM - Forum: KC868-HxB series Smart Controller - Replies (2)

HI

I recently made a device with KC868-H32b that allows me to communicate with HA. It works as expected, 

and I am able to send and reserve messages to and from the KC868-H32b.

The issue I am facing is that when the KC868-H32b is unplugged from power  


HA remembers the last known state the KC868-H32b was in, rather than updating the front end to show that the device has 

gone offline.


So, Is it possible to publish custom topic on kc868-h32b?

For example. 

payload_available and payload_not_available 

Thank you

Print this item

  MulltiBoard Control Interface
Posted by: James Alabama - 10-21-2021, 02:01 PM - Forum: KC868-HxB series Smart Controller - Replies (3)

I have been using the MultiBoard Control interface for KC868-ColB and H32L.  It provides a very nice display of status of all relays and inputs.  However, the six digital inputs to the relay controller (-H32L) are not included.  (Also not included in KBox-Pad).  Is it possible to add these to the MultiBoard panel for KC868-H32L?

Print this item

Wink IOT application and practice of smart home engineering book published
Posted by: admin - 10-21-2021, 07:32 AM - Forum: News - Replies (1)

IOT application and practice of smart home engineering book published in China. This book have wrote for 2 years. There are some smart home application case and IOT development resource for smart control system. The book we wrote in Chinese words.

[Image: iot-book-2_pix1000.png]
[Image: iot-book-3_pix1000.jpg]

Print this item

  Lesson22- How to Make a WiFi Repeater using ESP32 by KC868-A4 A8
Posted by: admin - 10-19-2021, 01:47 AM - Forum: KC868-A series and Uair Smart Controller - No Replies

here is download tool for ESP32 or ESP8266: https://www.espressif.com/en/support/dow...ther-tools
router firmware:
.zip   esp32_nat_router-master.zip (Size: 692.46 KB / Downloads: 607)
set 3 file address:
0x1000
0x10000
0x8000

Print this item

  home assistant demo case for KinCony relay controller and dimmer
Posted by: admin - 10-18-2021, 10:51 AM - Forum: Development - No Replies



.txt   dashboard raw code.txt (Size: 32.83 KB / Downloads: 442)
.zip   automations.zip (Size: 1.08 KB / Downloads: 369)
.zip   binary_sensor.zip (Size: 748 bytes / Downloads: 369)
.zip   configuration.zip (Size: 744 bytes / Downloads: 352)
.zip   light.zip (Size: 745 bytes / Downloads: 369)
.zip   node red dimmer flow 2021 10 15.zip (Size: 3.38 KB / Downloads: 370)
.zip   Nodered heating flow.zip (Size: 2.03 KB / Downloads: 346)
.zip   Nodred Switch flow.zip (Size: 3.04 KB / Downloads: 368)
.zip   sensors.zip (Size: 1.49 KB / Downloads: 351)
.zip   switch.zip (Size: 1.76 KB / Downloads: 352)
.zip   temperaturos ESP home.zip (Size: 823 bytes / Downloads: 355)

Print this item

  Kincony Controller Application "AND/"OR" Statement
Posted by: subas - 10-18-2021, 05:28 AM - Forum: Development - Replies (5)

   
dear admin

I need some help. please explain how do you place a "AND" statement "OR" statement in the Kincony Controller Application as attached?

My example would be:-

1. Run the pump (Relay 32) for 2min AND if Water Float is empty shutoff pump (Relay 32)

I can find the "AND" statement "OR" statement on the application.

Thank you

Regards
Subas

Print this item