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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 8,872
» Latest member: dilo@interia.eu
» Forum threads: 3,885
» Forum posts: 19,820

Full Statistics

Online Users
There are currently 69 online users.
» 0 Member(s) | 50 Guest(s)
AhrefsBot, Amazonbot, Baidu, Crawl, Google, PetalBot, Sogou web, bot, github.com

Latest Threads
KinCony Z1 Problem
Forum: KC868-AG / AG Pro / AG8 / Z1
Last Post: admin
53 minutes ago
» Replies: 14
» Views: 756
KC868-E16S/E16P demo conf...
Forum: KC868-E16S/E16P
Last Post: admin
55 minutes ago
» Replies: 20
» Views: 11,252
false start with KC868 A1...
Forum: KC868-A16v3
Last Post: admin
57 minutes ago
» Replies: 3
» Views: 23
kc-868 AK
Forum: "KCS" v3 firmware
Last Post: admin
57 minutes ago
» Replies: 4
» Views: 24
KC868-A16 v1.6 – relays 9...
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
58 minutes ago
» Replies: 1
» Views: 2
New TA web interface unav...
Forum: TA
Last Post: admin
Yesterday, 01:10 AM
» Replies: 3
» Views: 17
AIO Hybrid wiring diagram
Forum: AIO Hybrid
Last Post: admin
04-05-2026, 05:45 AM
» Replies: 0
» Views: 6
Interface T16M E/S et AIO
Forum: News
Last Post: admin
04-04-2026, 11:05 PM
» Replies: 7
» Views: 95
KCS_Z1_V3.24.2.zip firmwa...
Forum: "KCS" v3 firmware
Last Post: admin
04-04-2026, 02:37 AM
» Replies: 6
» Views: 82
KC868-COLB - How to Conne...
Forum: KC868-HxB series Smart Controller
Last Post: upstream
04-03-2026, 11:26 PM
» Replies: 6
» Views: 64

  Free sample request A. free education + B. Start a Project
Posted by: perabanj - 03-30-2025, 10:45 PM - Forum: Apply for free sample product - No Replies

I do repair and install electronics. I plan to expand my business to IoT. My first project is to create an automation system in my apartment.
KC868-A4 ESP32 seems  interesting for thd beginning.

Print this item

  KC868-A and ds18b20
Posted by: kulibin - 03-28-2025, 06:13 PM - Forum: KC868-A series and Uair Smart Controller - Replies (9)

I want to connect the temperature sensors ds18b20.
How many sensors can be connected to the S1 conector?
 Do I need to connect an additional resistor to the 4,7K?

Print this item

  KC868-A inputs pulses
Posted by: kulibin - 03-28-2025, 06:07 PM - Forum: KC868-A series and Uair Smart Controller - Replies (8)

Which inputs are best used to read pulses. (KC868-A  V1.6) 
For example, from a water sensor. 0-5V range? 
I think A1-A2 or S3-S4? 
How to correctly write a configuration for such an input?



Attached Files Thumbnail(s)
   
Print this item

  G1 External Antenna for 4G
Posted by: Bodad - 03-28-2025, 04:01 PM - Forum: G1 - Replies (1)

Hi,

Can you tell me what type of antenna I would have to buy if I wanted to position one away from the G1?  Are all the three supplied antenna the same?

Thanks,

Bodad

Print this item

  Alarm bell box with A16 outputs
Posted by: Knightrider - 03-28-2025, 01:18 PM - Forum: KC868-A16 - Replies (3)

I have just ordered an A16 to replace my wired ESP32-based alarm system (using home assistant and ESPHome).

My alarm bell box has a constant 12v supply, and activates the siren by pulling the trigger to ground:

https://www.amazon.co.uk/External-Wired-...PAHGN6WB8C

Currently, I use low level outputs from the ESP32 board to trigger 5v relays to pull to ground.

If I am correct, the A16 outputs at 12v.  In order to achieve the same result (pulling the siren trigger to ground) am I correct in thinking that I would need to replace the relays with ones that trigger at 12v?

Is anyone using the A16 already with a typical Bell box as the one shown?

Print this item

  Assistance with RS485 Communication via KC868-A16 & Wemos D1
Posted by: Bastn - 03-28-2025, 09:37 AM - Forum: KC868-A16 - Replies (3)

Hi,
I currently have the following setup:

  • Wemos D1 (ESP8266) connected to the Wi-Fi network.
  • KC868-A16 connected to the Wi-Fi network, running KCS firmware V2.
  • RS485 I/O module (25IOB16) connected to the KC868-A16 via RS485 (A/B).
I want to be able to read and write the inputs and outputs of the RS485 I/O module (25IOB16) using:
  • or IFTTT through the KC868-A16.
  • orA Wemos D1 (ESP8266) running Arduino code, connected to the same Wi-Fi network as the KC868-A16.
Issues I’m Facing:
  • I am unable to send or receive RS485 commands via IFTTT on the KC868-A16. (not supported by software?)
  • I am unable to send or receive RS485 commands from a small web UI on the Wemos D1 to the RS485 I/O module (25IOB16).
Objective:
I am looking to replace my current PLC, which simply toggles outputs based on input signals in my house.
Could you provide guidance on how to achieve this?
Thanks!

Print this item

  KC868-A16 - Custom Form Wifimanager Root content
Posted by: venuakil2 - 03-27-2025, 09:55 AM - Forum: KC868-HxB series Smart Controller - Replies (1)

Hi All,
I am trying to add new form to root page and configure the form as per my requirements

Please check below sample code is not working. 

And send me Latest Arduino IDE wifimanager sample example  code. 





#include <WiFiManager.h>          // https://github.com/tzapu/WiFiManager
#include <FS.h>
#include <SPIFFS.h>
const char* htmlFile = "/index.html";
void setup() {
  Serial.begin(115200);
 
  // Initialize SPIFFS
  if (!SPIFFS.begin(true)) {
    Serial.println("An Error has occurred while mounting SPIFFS");
    return;
  }
  // Create WiFiManager instance
  WiFiManager wifiManager;
  // Set custom root page handler
  wifiManager.setCustomHeadElement("<style>body{background-color:#f0f0f0;}</style>");
  wifiManager.setAPCallback([](WiFiManager *wm) {
    // This runs when AP mode is started
 
   
   // Add custom route handler for root page
    wm->server->on("/", HTTP_GET, [wm]() {
      if (SPIFFS.exists(htmlFile)) {
        File file = SPIFFS.open(htmlFile, "r");
        if (file) {
          wm->server->sendHeader("Content-Encoding", "gzip"); // If file is compressed
          wm->server->streamFile(file, "text/html");
          file.close();
          return;
        }
      }
      // Fallback to default if file not found
      wm->server->send(200, "text/html",
        "<html><body><h1>WiFi Config</h1>"
        "<p>Please connect to WiFi network</p>"
        "<p>Then configure your settings</p></body></html>");
    });
  });
  // Start WiFiManager
  if (!wifiManager.autoConnect("MyAP")) {
    Serial.println("Failed to connect");
   //////////// ESP.restart();
  }
  Serial.println("Connected!");
}
void loop() {
  // Your code here
}

Print this item

  Hoping to create an SPI bus
Posted by: clarencelocke - 03-26-2025, 09:48 PM - Forum: KC868-A64 - Replies (1)

Would it be possible (by re-flashing the device with ESPHome) to repurpose the GPIO pins used for the RS-485 serial interface and one of the I2C buses to be used instead as an SPI bus?

Print this item

  G1 connection problem to KC868-A16v3
Posted by: classiccars - 03-26-2025, 04:08 PM - Forum: G1 - Replies (9)

I get no Test SMS going out via A16v3

Test SMS with standalone G1 worked, so SIM ist OK.

Connected G1 GPIO 13 (TX) with A16v3 GPIO 40 (RX)
Connected G1 GPIO 14 (RX) with A16v3 GPIO 39 (TX)

Network/GSM is enabled on A16v3
GSM Bridge is enabled on G1



What might be wrong?

Print this item

  G1 Incoming Call Handling
Posted by: Bodad - 03-26-2025, 11:12 AM - Forum: G1 - Replies (1)

Hi,

I've recently taken delivery of a G1 and it's working as per your YouTube videos. My application is as a gate opener, so I have a few requests for development into the KCS interface:

  1. Add an option to reject (ie hang up) incoming calls once the CallerId has been captured (simple enabled/disabled switch).
  2. Add the option of creating a "whitelist" of incoming numbers which are "allowed".  If the CallerId is in the whitelist, it gets passed on via whichever protocol is used.  Ideally, it would be helpful to have a name associated with the number so that it's easier to work out who is on the list and not.
  3. Add the name from the whitelist to the CallerId e.g.

           { 
               "call_ring": {
                       "phone": "+8612345678901", 
                       "name": "Kincony Test"
               } 
            }

      4. Add MQTT to the IFTTT protocol as both an input and output.

Thank you,

Bodad

Print this item