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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 3,083
» Latest member: Domdsq
» Forum threads: 1,829
» Forum posts: 9,611

Full Statistics

Online Users
There are currently 51 online users.
» 0 Member(s) | 39 Guest(s)
Bing, Bytespider, Facebook, Google, bot, facebookexternalhit

Latest Threads
Issue with KC868-AIO-EXTA...
Forum: KC868-AIO
Last Post: mahafree
3 hours ago
» Replies: 3
» Views: 2
Develop on my own questio...
Forum: KC868-AG/AG Pro
Last Post: mottibz
4 hours ago
» Replies: 0
» Views: 0
kc868-a8 V1.5 flashing
Forum: "KCS" firmware system
Last Post: Vulcan
4 hours ago
» Replies: 11
» Views: 8
Screws to lock the board ...
Forum: KC868-A16
Last Post: admin
7 hours ago
» Replies: 1
» Views: 1
KC868-AP KCS 2 MQTT
Forum: KC868-AP / ADR
Last Post: admin
9 hours ago
» Replies: 3
» Views: 4
Kc868-server-modbus
Forum: KC868-Server Raspberry Pi4 local server
Last Post: admin
Yesterday, 10:13 PM
» Replies: 4
» Views: 4
KC868-HAv2 esphome issue
Forum: Development
Last Post: admin
Yesterday, 10:12 PM
» Replies: 24
» Views: 844
H32L issue
Forum: KC868-HxB series Smart Controller
Last Post: Saif Kitany
Yesterday, 07:12 AM
» Replies: 10
» Views: 8
KC868-A16 esp32 board (A1...
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
04-23-2024, 11:47 PM
» Replies: 23
» Views: 2,873
KC868-ATC V1 dont work on...
Forum: KC868-ATC / Tuya adapter V2
Last Post: admin
04-23-2024, 02:03 AM
» Replies: 12
» Views: 7

Exclamation M30 does not correctly read power and energy
Posted by: noeuse - 03-03-2024, 09:58 PM - Forum: KC868-M16 / M1 / MB / M30 - Replies (4)

Hello, in your video you are measuring 240V and 0.21A, which equals 50.4W. But in the video, it shows 32.3W. I have the same issue; the voltage and current are measured correctly, but the power and energy are not measured accurately. Is there any way to calibrate it to measure correctly?



Attached Files Thumbnail(s)
   
Print this item

  KC868-A4 static IP address
Posted by: Zoltansz1986 - 03-03-2024, 07:50 AM - Forum: KC868-A4 - Replies (3)

Hello,

In my house I integrated the KC868 A4, A8 and A16 controllers (with KCS firmware) into the TapHome system. I used the Http Server for the connection. The static ip address is important here.

In the case of A8 and A16, the static ip can be set in the KCS, but in the A4 it is not available, as it only has wifi.

Is there a possibility for this? I ask for your help.

Regards, Zoltán




Attached Files Thumbnail(s)
       
Print this item

  KC868-A32 and KC868-AG Pro Integration
Posted by: DariusM - 03-01-2024, 06:35 PM - Forum: KC868-A32/A32 Pro - Replies (6)

I have recently purchased an KC868-A32 and KC868-AG Pro in order to have DigitalInputs + Tuya + HomeAsistant + RF controll all at the same time on 32 relays.

I have uploaded via the flash_download_tool_3.9.2 tool the respective .bin files to both devices and then managed to access their IP and connect them to my WiFi.
On the KC868-A32 I have managed via the IFTTT part to configure the relays to work via the digital input pins.
On the KC868-AG Pro I have managed to learn 32 RF buttons and also manged to connect to the tuya App.
EDIT: I managed to control the relays in the local network via KBOX App

I have a couple problems/ don't know how to do:

1. how can I see the leaned RF buttons on the KC868-AG in the tuya app ? (or I need to "learn" them again from the tuya app?)
2. how can I control the  KC868-A32 relays via RF signals received by the KC868-AG ? (I have enabled on the A32  the TCP-Server, but I did not manage to make the 2 devices work with eachother)
3. what do I need to do in order to see the 32 relays from the tuya app, so I can control them from the app itself ?
4. in order to make the HomeAsistant part to work I assume I need to deploy the  HomeAsistant to a raspbery pi and then ? Do you have any tutorials on setting up the control of the relays from the HomeAsistant, if yes, please share me the links

UPDATE regarding question 2, after a couple of hours of debug of the C# MulitiBoardCtrlV1 code:

   1. from Postman I can make API GET calls to the  KC868-A32 IP : PORT and setting the body content to "RELAY-SET-255,1,0" or "RELAY-SET-255,1,1" and it works perfect on relay 1 without any noticeable delay between the API call and the relay actuating

   2. from the IFTTT of the KC868-AG I made an action IF RF1 THEN CUSTOME PROTOCOL1 , where  CUSTOME PROTOCOL1 is HTTP GET with message "RELAY-SET-255,1,0" and the URL and port of the A32 , this WORKS but with a HUGE delay beteween the RF remote button press and the relay actuating ~12seconds (while the direct api call from Postman working instant) , any ideas why ? or what I did wrong ? 

Thank you in advance, 
       Best regards, 
              Darius M.

Print this item

  I2C
Posted by: Wickfut - 03-01-2024, 02:57 PM - Forum: KC868-A8 - Replies (3)

How do I get access to the I2C bus? I want to add an LCD display.

TIA...

Wick

Print this item

  Library <Preferences.h> Not Storing Values
Posted by: job-systems - 03-01-2024, 01:10 AM - Forum: KC868-A4S - No Replies

Hi, hope everyone is fine.

I give up... I need help. I am unable to store values in non volatile memory, so that if there is a power loss, and re-power, the value keeps the same... example, a temperature setpoint.

In my Arduino IDE environment I use: Node32s board (Is this the correct board?

This is the configuration I have in Arduino IDE:

GENERAL: 

#include <Preferences.h>

Preferences preferences; // Start preferences service.

SETUP:

  preferences.begin("almacenamiento-valores", false); // Start storage
  Serial.println("Escribiendo en NVS: 123");
  preferences.putInt("offset", 123); // Write a test value of 123 on the memory space called "offset".
 
  int valorLeido = preferences.getInt("offset", 0); // Reads the stored value.
  Serial.print("Leído de NVS: ");
  Serial.println(valorLeido); // Show the value that was stored.
  preferences.end();


Result I get on serial monitor: 

Escribiendo en NVS: 123
Leído de NVS: 0

Result: Writing the value was not successful. 

What am I doing wrong?
Would you advice using a different library for storing values?
Maybe the board I have selected on Arduino IDE is the wrong one?

Thank you for your help. 

BR, Juan

Print this item

  PWM output of DC motor drive?
Posted by: IMD - 02-29-2024, 03:16 PM - Forum: Development - Replies (1)

맑은 고딕]빠른 답변에 감사드립니다.
맑은 고딕]1. KC868-A16 보드의 PWM 출력 핀 맵은 자신 있다는 것을 알고 있습니다.
맑은 고딕]DC 모터를 제어하려고 합니다. IN1, IN2, ENA(속도 제어 PWM).
맑은 고딕]2. 경사 입력 핀이 반대 입력 핀

맑은 고딕]****개발 환경***
맑은 고딕]1.  KC868-A16
맑은 고딕]2.  아두이노 IDE 2.0.4
맑은 고딕]3.  DC 모터 12V, TB6600 스텝 모터 드라이버

Print this item

  dry contact k868 a8m
Posted by: alex989 - 02-28-2024, 03:23 PM - Forum: KC868-A series and Uair Smart Controller - Replies (5)

hi,
i'm trying to connect some solenoid valve to the board .
the solenoid use 24vac, when i connect the cable of the solenoid valve to the output 1, it goes on.
i don't undestand why

Print this item

Question Digital Input
Posted by: Vaughan2024 - 02-28-2024, 10:55 AM - Forum: KC868-A8 - Replies (7)

Hi Have a question about a how best to connect a signal that is about 1.2 - 2 volt. 
I presume I can not use the dry contact input 1 - 8 a they are 12v ?


Is there a way to get the board to detect a small 1.2 volt signal
Can I use inputs S1 - S4?

Thanks

Print this item

  KC868-A4 product for education
Posted by: jvela - 02-27-2024, 08:29 AM - Forum: Apply for free sample product - No Replies

I request a KC868-A4 equipment for education. I work for a school in Spain and we want to teach our students microcontroller programming and basic concepts of electricity and electronics.

Print this item

  ZP13 Smoke Gas Sensor Module
Posted by: aseksas - 02-26-2024, 09:01 PM - Forum: KC868-A series and Uair Smart Controller - Replies (1)

Hi, I have the KC868-H32B board. I'm interested in how: can I connect the ZP13 Smoke Gas Sensor (like 7 sensors to one input slot)


All information about the module is provided here: https://www.winsen-sensor.com/d/files/manual/zp13.pdf
For this module's physical interface: XH2.54-4P terminal socket.


If this module is not compatible, could you recommend another one? But I need a module only.



Thx for your time and help who can replay me Smile

Print this item