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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 6,547
» Latest member: clarencelocke
» Forum threads: 2,901
» Forum posts: 15,394

Full Statistics

Online Users
There are currently 21 online users.
» 0 Member(s) | 11 Guest(s)
Amazonbot, Crawl, PetalBot, WordPress/, bot, owler

Latest Threads
Tuya Controller
Forum: KC868-A16
Last Post: dagummy
1 hour ago
» Replies: 36
» Views: 1,620
G1 connection problem to ...
Forum: G1
Last Post: classiccars
4 hours ago
» Replies: 0
» Views: 3
G1 ESP32-S3 IO pins defin...
Forum: G1
Last Post: classiccars
5 hours ago
» Replies: 1
» Views: 197
[Bug] Network
Forum: KC868-A8
Last Post: admin
7 hours ago
» Replies: 3
» Views: 16
G1 Incoming Call Handling
Forum: G1
Last Post: admin
7 hours ago
» Replies: 1
» Views: 5
Dummy question: non-zero ...
Forum: T16M
Last Post: admin
7 hours ago
» Replies: 5
» Views: 36
Question:AS. Improving A...
Forum: KinCony AS
Last Post: admin
Today, 02:32 AM
» Replies: 1
» Views: 6
Integration zigbee and tu...
Forum: KC868-AG / AG Pro / AG8
Last Post: admin
Yesterday, 10:22 PM
» Replies: 3
» Views: 21
T16M discovery on linux
Forum: T16M
Last Post: admin
Yesterday, 10:18 PM
» Replies: 1
» Views: 4
Etgernet + wifi
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
Yesterday, 10:16 PM
» Replies: 32
» Views: 670

  Lesson18- how to use UDP communication with KC868-A8 by ethernet
Posted by: admin - 10-08-2021, 11:53 AM - Forum: KC868-A series and Uair Smart Controller - Replies (4)


Arduino IDE source code: 

.zip   LAN8720_UDP.zip (Size: 902 bytes / Downloads: 956)

Print this item

  MQTT set issue
Posted by: gek1925 - 10-07-2021, 02:21 PM - Forum: KC868-HxB series Smart Controller - Replies (4)

Hi

I'm trying to set two relays at once, but only one changed.

I publish via Home Assistant MQTT:

relay32/xxxxxxxxxxxxx/set

{"relay17":{"on":1},"relay18":{"on":1}}



but only relay17 state is changed

please answer
Is it possible to set more than one relay by one MQTT publish command?

with regards,
Gene

Print this item

  KC868-A4 and A8 plastic enclosure 3D printer stl file
Posted by: admin - 10-07-2021, 05:29 AM - Forum: KC868-A series and Uair Smart Controller - No Replies

thanks for "Calin Mihai Cioci" from UK, the 3D stl file design by him. more details about his KC868-A4 project, see this link:
http://calincioci.uk/kinconya4/

3D print files for Base:
[Image: 3D_base_printed-pix800.jpg]

[Image: A4_board_temp_humidity_air_soil_sensor-pix800.jpg]
https://www.kincony.com/images/KC868-A4/...ase_A4.stl
https://www.kincony.com/images/KC868-A4/...se_A4.step

Print this item

  KC868-A4 and A8 plastic enclosure 3D printer stl file
Posted by: admin - 10-07-2021, 05:29 AM - Forum: KC868-A4 - Replies (7)

thanks for "Calin Mihai Cioci" from UK, the 3D stl file design by him. more details about his KC868-A4 project, see this link:
http://calincioci.uk/kinconya4/

3D print files for Base:
[Image: 3D_base_printed-pix800.jpg]

[Image: A4_board_temp_humidity_air_soil_sensor-pix800.jpg]
https://www.kincony.com/images/KC868-A4/...ase_A4.stl
https://www.kincony.com/images/KC868-A4/...se_A4.step

Print this item

  KC868-A4 and A8 plastic enclosure 3D printer stl file
Posted by: admin - 10-07-2021, 05:29 AM - Forum: KC868-A8 - Replies (6)

thanks for "Calin Mihai Cioci" from UK, the 3D stl file design by him. more details about his KC868-A4 project, see this link:
http://calincioci.uk/kinconya4/

3D print files for Base:
[Image: 3D_base_printed-pix800.jpg]

[Image: A4_board_temp_humidity_air_soil_sensor-pix800.jpg]
https://www.kincony.com/images/KC868-A4/...ase_A4.stl
https://www.kincony.com/images/KC868-A4/...se_A4.step

Print this item

  Lesson21- KC868-A8 ethernet work with home assistant by ESP home
Posted by: admin - 10-05-2021, 11:34 AM - Forum: KC868-A series and Uair Smart Controller - No Replies


here is ESP home config file work with KC868-A8 by ethernet static IP:

esphome:
  name: relay1
  platform: ESP32
  board: esp32dev
 
 
# Example configuration entry for ESP32
i2c:
  sda: 4
  scl: 5
  scan: true
  id: bus_a


# Example configuration entry
ethernet:
  type: LAN8720
  mdc_pin: GPIO23
  mdio_pin: GPIO18
  clk_mode: GPIO17_OUT
  phy_addr: 0

  # Optional manual IP
  manual_ip:
    static_ip: 192.168.2.199
    gateway: 192.168.2.1
    subnet: 255.255.255.0 


# Example configuration entry
pcf8574:
  - id: 'pcf8574_hub'
    address: 0x24


# Individual outputs
switch:
  - platform: gpio
    name: "light1"
    pin:
      pcf8574: pcf8574_hub
      # Use pin number 0
      number: 0
      # One of INPUT or OUTPUT
      mode: OUTPUT
      inverted: false




# Enable logging
logger:

# Enable Home Assistant API
api:

Print this item

  KC868-A8 ESP32 I/O pin define in Arduino IDE
Posted by: admin - 10-05-2021, 11:32 AM - Forum: KC868-A8 - No Replies

#define ANALOG_A1  32
#define ANALOG_A2  33

IIC SDA:4
IIC SCL:5

Relay_IIC_address 0x24

Relay1 = pcf8574.pinMode(P0, OUTPUT);
Relay2 = pcf8574.pinMode(P1, OUTPUT);
Relay3 = pcf8574.pinMode(P2, OUTPUT);
Relay4 = pcf8574.pinMode(P3, OUTPUT);
Relay5 = pcf8574.pinMode(P4, OUTPUT);
Relay6 = pcf8574.pinMode(P5, OUTPUT);
Relay7 = pcf8574.pinMode(P6, OUTPUT);
Relay8 = pcf8574.pinMode(P7, OUTPUT);

Input_IIC_address 0x22

Input1 = pcf8574.pinMode(P0, INPUT);
Input2 = pcf8574.pinMode(P1, INPUT);
Input3 = pcf8574.pinMode(P2, INPUT);
Input4 = pcf8574.pinMode(P3, INPUT);
Input5 = pcf8574.pinMode(P4, INPUT);
Input6 = pcf8574.pinMode(P5, INPUT);
Input7 = pcf8574.pinMode(P6, INPUT);
Input8 = pcf8574.pinMode(P7, INPUT);

-------------------------------
(for KC868-A8 PCB v1.6)

S1: GPIO14
S2: GPIO13
S3: GPIO32
S4: GPIO33
-------------------------------

const int DI9 = 36
const int DI10 =39

RF433MHz wireless receiver: 15
RF433MHz wireless transmitter: 2

Ethernet (LAN8720) I/O define:

#define ETH_ADDR        0
#define ETH_POWER_PIN  -1
#define ETH_MDC_PIN    23
#define ETH_MDIO_PIN  18
#define ETH_TYPE      ETH_PHY_LAN8720
#define ETH_CLK_MODE  ETH_CLOCK_GPIO17_OUT

Print this item

  KC868-H8B input minimum time to activate
Posted by: Suhl79 - 10-04-2021, 08:20 PM - Forum: KC868-HxB series Smart Controller - Replies (14)

I've been playing with H8B device today and connected a momentary switch to it's input port. I also use MQTT Mosquito to publish/subscribe for the events. Quite often I didn't get the button press reported as apparently they were too short. I have noticed that I have to press and hold the button for around 0.5 sec to get it reported. Is it an expected behavior? I'm planning to use some inputs for the door bell application and short button presses are normal. It almost look like some kind of a button debounce technique was applied for the input signal, but it affected how short signals are being recognized. Please advise.

Print this item

  Example List IO´s Rooms
Posted by: sleonheart - 10-04-2021, 11:59 AM - Forum: DIY Project - Replies (1)

Hello,

as per Request in Youtube Channel here a small Example List of IO´s needed per room excluding switches and Relais. This is just a Sensor list of Sensors that are typically used.

I hope you can see that Sensor inputs are always Welcome.

I have not added Analog Sensors that are usually mounted. If you need them i would add them too.

These are just some example rooms. Garage and Outside of house is missing too. Kids Bedrooms are the Same amount like normal Bedroom.

I hope this helps Kincony to understand why we need many Inputs.



.xlsx   example IO List.xlsx (Size: 10.68 KB / Downloads: 381)

Print this item

  need http ,mqtt , tcp , rs 485 protocal.pdf
Posted by: engmohades - 10-02-2021, 12:42 PM - Forum: News - Replies (1)

i need kc868-h32bs controller http ,mqtt , tcp , rs 485 protocal .pdf Heart

Print this item