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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 6,366
» Latest member: Aubergine
» Forum threads: 2,844
» Forum posts: 15,030

Full Statistics

Online Users
There are currently 78 online users.
» 3 Member(s) | 57 Guest(s)
Amazonbot, Bing, Bytespider, Crawl, Go-http-client, Google, PetalBot, WordPress/, Yeti, bot, owler, Aubergine, klakier2121, lusant

Latest Threads
A16: IFTTT Time based act...
Forum: KC868-A16
Last Post: sebfromgermany
1 hour ago
» Replies: 17
» Views: 157
analog input resolution 3...
Forum: KC868-A16
Last Post: Yosemite
2 hours ago
» Replies: 15
» Views: 384
[Arduino IDE demo source ...
Forum: KC868-A16
Last Post: wolli
3 hours ago
» Replies: 7
» Views: 2,574
KC868-HA-V21 serial port ...
Forum: KC868-HA /HA v2
Last Post: admin
4 hours ago
» Replies: 8
» Views: 92
Using B16M for driving LE...
Forum: B16M
Last Post: admin
4 hours ago
» Replies: 3
» Views: 11
KC868-M30 - how to get it...
Forum: KC868-M16 / M1 / MB / M30
Last Post: msmrz
5 hours ago
» Replies: 4
» Views: 42
KC868-HA RS485 INPUT & OU...
Forum: KC868-HA /HA v2
Last Post: admin
Yesterday, 10:57 PM
» Replies: 29
» Views: 6,584
MQTT Connection issues
Forum: KC868-A16
Last Post: admin
Yesterday, 10:55 PM
» Replies: 1
» Views: 9
KCS868-A6 not found
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
Yesterday, 10:50 PM
» Replies: 12
» Views: 55
Request for Assistance in...
Forum: DIY Project
Last Post: admin
Yesterday, 09:17 AM
» Replies: 1
» Views: 15

  config analog input for 4-20mA device in ESPHome
Posted by: admin - 07-28-2022, 07:29 AM - Forum: KC868-A4 - No Replies

actually esp32 will convert current signal to voltage from sensor. we have tested KC868-A4 board with current source, here are some photos from board and esphome log output:
   
   
   
   


here is ESPHome config file for KC868-A4 analog input:

esphome:
  name: a4

esp32:
  board: esp32dev
  framework:
    type: arduino

# Enable logging
logger:

# Enable Home Assistant API
api:

ota:
  password: "cde668a4953338ac5140f1585c9d5150"

wifi:
  ssid: "KinCony"
  password: "123456"

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

captive_portal:

sensor:
  - platform: adc
    pin: 34
    name: "ADC-IN"
    update_interval: 5s

Print this item

  water level measurement as a percentage.
Posted by: 2sdaymars - 07-25-2022, 04:08 AM - Forum: KC868-A4 - Replies (1)

Can you give me some code to measure water with dc current analog 4-20mA using ESPHOME?

I want to know the filter value representing the water level measurement as a percentage.

I am new to esphome.

Print this item

  KC868-A8S PCB updated V1.2
Posted by: admin - 07-21-2022, 07:52 AM - Forum: News - No Replies

new pcb v1.2 of KC868-A8S, added 4G SIM7600 module socket on the pcb.



Attached Files Thumbnail(s)
                   
Print this item

  KC868 A4 - Help in Program
Posted by: mfjunior96 - 07-20-2022, 03:15 AM - Forum: KC868-A4 - Replies (1)

Goodnight,

I have a led driver that uses the tuya/smart home platform, it is connected to alexa and works only by voice command, I wanted to use a digital input to change the state of the led driver from on to off, could anyone help me?


Thanks in Advance



Attached Files
.zip   Casa_A4_Digital_Wifi_IR_LED_BOTAO.zip (Size: 1.64 KB / Downloads: 275)
Print this item

  [Arduino demo source code for KC868-A4]-15 internet control by ESP Rainmaker
Posted by: admin - 07-19-2022, 05:39 AM - Forum: KC868-A4 - Replies (30)

this is a simple demo source code for KC868-A4 remote control relay by ESP RainMaker.


.zip   ESP-RAINMARKER-A4-4DO.zip (Size: 1.96 KB / Downloads: 1250)
1. install arduino IDE with "Additional Boards Manager URLs": https://raw.githubusercontent.com/espres...index.json
2. Arduino IDE "Board" chose: ESP32 DEV Module
3. Arduino IDE "Tools" -- "Partition Scheme" -- chose: "RainMaker"
4. Download code
5. Scan QRcode to add device.

Print this item

  switch terminal board or Dimmer controller remoter's battery
Posted by: admin - 07-19-2022, 12:19 AM - Forum: KC868-HxB series Smart Controller - No Replies

because product can't send by battery by air plane. so if you need to buy the battery in your local city, here is model "23A 12V"  and the photo.
   

Print this item

  KC868-A4 esphome yaml config for home assistant
Posted by: admin - 07-16-2022, 01:19 PM - Forum: KC868-A4 - Replies (6)

esphome:
  name: kc868-a4
  platform: ESP32
  board: esp32dev

# Enable logging
logger:

# Enable Home Assistant API
api:

ota:
  password: "4d5a388de4f759bf88e71cde7a31af6f"

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

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

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



   

.txt   Made_for_ESPHome_KC868-A4.txt (Size: 1.1 KB / Downloads: 675)

Print this item

  Reconexão após perda do sinal da internet.
Posted by: Adilson - 07-14-2022, 02:33 PM - Forum: KC868-HxB series Smart Controller - Replies (1)

Estou usando KC868-col com Node-red. Quando a internet cai, eu tenho que me reconectar manualmente clicando no botão de conexão no software de configuração Kincony. Como fazer com que o KC868-col se conecte automaticamente quando a internet ou a energia se apagam?


I'm using KC868-col with Node-red. When the internet goes down, I have to manually reconnect by clicking the connect button in the Kincony setup software. How to make the KC868-col automatically connect when the internet or power goes out?

Print this item

  SIM7100_SIM7500_SIM7600 Series Windows USB driver
Posted by: admin - 07-14-2022, 04:54 AM - Forum: KC868-A8S - No Replies

SIM7100_SIM7500_SIM7600 Series Windows USB driver_V1.00
https://www.kincony.com/download/SIM7100..._V1.00.rar

Print this item

  KC868-H4B Control DC 12V contactor
Posted by: KinCony Support - 07-12-2022, 06:19 AM - Forum: Schematic and diagram - No Replies

   
   

Print this item