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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 9,747
» Latest member: leatherjacketz
» Forum threads: 4,214
» Forum posts: 20,883

Full Statistics

Online Users
There are currently 68 online users.
» 0 Member(s) | 45 Guest(s)
AhrefsBot, Amazonbot, Applebot, Baidu, Bing, Bytespider, Crawl, Facebook, Google, PetalBot, Twitter, bot, facebookexternalhit

Latest Threads
[arduino code examples fo...
Forum: CO16
Last Post: admin
Today, 12:16 AM
» Replies: 0
» Views: 7
[arduino code examples fo...
Forum: CO16
Last Post: admin
Today, 12:11 AM
» Replies: 0
» Views: 7
[arduino code examples fo...
Forum: CO16
Last Post: admin
Today, 12:09 AM
» Replies: 0
» Views: 7
[arduino code examples fo...
Forum: CO16
Last Post: admin
Today, 12:08 AM
» Replies: 0
» Views: 7
[arduino code examples fo...
Forum: CO16
Last Post: admin
Today, 12:06 AM
» Replies: 0
» Views: 7
[arduino code examples fo...
Forum: CO16
Last Post: admin
Today, 12:04 AM
» Replies: 0
» Views: 7
[arduino code examples fo...
Forum: CO16
Last Post: admin
Today, 12:02 AM
» Replies: 0
» Views: 7
[arduino code examples fo...
Forum: CO16
Last Post: admin
Today, 12:00 AM
» Replies: 0
» Views: 8
[arduino code examples fo...
Forum: CO16
Last Post: admin
Yesterday, 11:58 PM
» Replies: 0
» Views: 7
[arduino code examples fo...
Forum: CO16
Last Post: admin
Yesterday, 11:56 PM
» Replies: 0
» Views: 7

  KC868-S8 manual bypass switch released
Posted by: admin - 03-13-2023, 11:46 AM - Forum: News - No Replies

we have designed 8 Channel Manual Bypass Switch for smart home automation controller. If controller is broken or bad, so that can use manual control buttons for your smart system.
 
[Image: KC868-S8_01.jpg]
[Image: KC868-S8_02.jpg]

Print this item

  DS1307 RTC
Posted by: Olsen@HuaHin - 03-13-2023, 10:23 AM - Forum: KC868-A16 - Replies (16)

Hello everybody!

I am looking at adding a DS1307 RTC connected via I2C, anyone you can recommended that has been testet and easy to connect?

Presume source code are the same as for the KC868-A6.

Print this item

  how to install docker on KC868-Server CM4 by raspberry pi OS
Posted by: admin - 03-13-2023, 04:44 AM - Forum: Home automation training courses - No Replies

A. install docker on KC868-Server CM4 on raspberry pi OS

1. sudo curl -sSL https://get.docker.com | sh

2. sudo docker run hello-world

this test whether docker install correct.

3. sudo systemctl daemon-reload

4. sudo systemctl docker

5. sudo systemctl start docker

B. install GUI portainer

1. sudo docker pull portainer/portainer

2. sudo docker volume create portainer_data

3. docker run -d -p 9000:9000 --name portainer --restart always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer

4. login web browser by http://ip:9000

Print this item

  KC868-H16 TCP PHP sample code
Posted by: jfementira - 03-13-2023, 03:49 AM - Forum: KC868-HxB series Smart Controller - Replies (5)

I'm using KC868-H16.
How to run tcp send and receive command using php?

Print this item

  Firmware Update Not Responding to Bootloader Detect button
Posted by: j_griffin100@yahoo.com - 03-13-2023, 03:47 AM - Forum: KC868-HxB series Smart Controller - Replies (12)

Updated driver in WIndows,
Open Firmware Download Tool
Open Port
Power On Device
When Click bootloader detect button, nothing happens; Open File button remains grayed out.


See attached screenshot
Thanks for any help.



Attached Files Thumbnail(s)
   
Print this item

  Disabling the blue led
Posted by: mungaiambrose - 03-12-2023, 01:47 PM - Forum: KC868-AG / AG Pro / AG8 / Z1 - Replies (1)

Is it possible to disable the led or reduce the brightness?

Print this item

  KC868-H32BS ymal for home assistant using 32 switch + 32 binary sensor
Posted by: admin - 03-12-2023, 12:47 AM - Forum: KC868-HxB series Smart Controller - No Replies

here is download link

.txt   H32BS_yaml.txt (Size: 18.49 KB / Downloads: 629)

Print this item

  868-A4 pins for esphome
Posted by: bria_s - 03-11-2023, 06:14 AM - Forum: KC868-A series and Uair Smart Controller - Replies (3)

Hi
what pins are used for the different input / outputs on the A4?
I would like make the complet unit with capabilities available to home assistant.
Right now i have the following:



Code:
esphome:
  name: 868-a4
  friendly_name: 868-A4

esp32:
  board: esp32dev
  framework:
    type: arduino

# Enable logging
logger:

# Enable Home Assistant API
api:
  encryption:
    key: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"

ota:
  password: "xxxxxxxxxxxxxxxxxxxxxxxxxxxx"

wifi:
  ssid: "xxxxxxxx"
  password: "xxxxxx"

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

captive_portal:

switch:
  - platform: gpio
    name: "light1"
    pin: 2
    inverted: false

  - platform: gpio
    name: "light2"
    pin: 15
    inverted: false
   
  - platform: gpio
    name: "light3"
    pin: 5
    inverted: false
   
  - platform: gpio
    name: "light4"
    pin: 4
    inverted: false
   
binary_sensor:
  - platform: gpio
    name: "input1"
    pin:
      number: 36
      inverted: true

  - platform: gpio
    name: "input2"
    pin:
      number: 39
      inverted: true
   
  - platform: gpio
    name: "input3"
    pin:
      number: 27
      inverted: true
     
  - platform: gpio
    name: "input4"
    pin:
      number: 14
      inverted: true

output:
  - platform: esp32_dac
    pin: GPIO25
    id: dac_output2
  - platform: esp32_dac
    pin: GPIO26
    id: dac_output1

light:
  - platform: monochromatic
    output: dac_output1
    name: "KC868-A4-DAC1"
    gamma_correct: 2
    id: dac_light1
  - platform: monochromatic
    output: dac_output2
    name: "KC868-A4-DAC2"
    id: dac_light2
   
sensor:
  - platform: adc
    pin: 34
    name: "ADC-IN"
    update_interval: 5s

dallas:
  - pin: GPIO13

Print this item

  Digital inputs....
Posted by: Amaral989 - 03-10-2023, 04:05 PM - Forum: KC868-A series and Uair Smart Controller - Replies (9)

Hello everyone, 
I have a question concerning digital inputs. 
I have a RV, motorhome, that I would like to monitor.
So is it possible to provide 12vdc to the digital input. 
Actually, it depends on the battery voltage , but it can probably reach up to 14.7 volt dc. 

Will the digital input accept max of 14.7 volt. 

Thank you
John A

Print this item

  KC868 COLB MINI
Posted by: Astil - 03-10-2023, 06:00 AM - Forum: KC868-Server Raspberry Pi4 local server - Replies (13)

I have a device KC868 COLB MINI , i try to configure this by connecting power source and ethernet but i didn't find any ip address in the ip scanner and i dont have any response from the device side.... please help me to configure this

Print this item