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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 8,800
» Latest member: orientcctv
» Forum threads: 3,865
» Forum posts: 19,727

Full Statistics

Online Users
There are currently 77 online users.
» 0 Member(s) | 64 Guest(s)
AhrefsBot, Amazonbot, Applebot, Bytespider, bot

Latest Threads
kWh resolution
Forum: N30
Last Post: admin
4 hours ago
» Replies: 32
» Views: 1,004
"KCS" v3.24.2 firmware BI...
Forum: "KCS" v3 firmware
Last Post: admin
7 hours ago
» Replies: 0
» Views: 20
N60 Energy RS485 Modbus P...
Forum: N60
Last Post: admin
8 hours ago
» Replies: 1
» Views: 351
N30 Energy RS485 Modbus P...
Forum: N30
Last Post: admin
8 hours ago
» Replies: 1
» Views: 415
N20 Energy RS485 Modbus P...
Forum: N20
Last Post: admin
8 hours ago
» Replies: 1
» Views: 360
N10 Energy RS485 Modbus P...
Forum: N10
Last Post: admin
8 hours ago
» Replies: 1
» Views: 432
N60 N30 N20 N10 ARM CPU f...
Forum: N60
Last Post: admin
8 hours ago
» Replies: 3
» Views: 109
N60 N30 N20 N10 ARM CPU f...
Forum: N30
Last Post: admin
8 hours ago
» Replies: 0
» Views: 12
N60 N30 N20 N10 ARM CPU f...
Forum: N20
Last Post: admin
8 hours ago
» Replies: 0
» Views: 9
N60 N30 N20 N10 ARM CPU f...
Forum: N10
Last Post: admin
8 hours ago
» Replies: 0
» Views: 13

  COLB RS485 BAUD RATE
Posted by: Dm81 - 05-27-2022, 01:40 PM - Forum: KC868-HxB series Smart Controller - Replies (15)

Hello
please, which is the baud rate of RS485 on COLB?
Is it possible to choose it?
thank you
Diego

Print this item

  Lesson27 - Notifications for Android TV in home assistant
Posted by: admin - 05-25-2022, 09:09 AM - Forum: Home automation training courses - No Replies



1. install "Notifications for Android TV" apk in Android TV.

2. Browse to your Home Assistant instance.
    In the sidebar click on  Settings.
    From the configuration menu select: Devices & Services.
    In the bottom right, click on the  Add Integration button.
    From the list, search and select “Notifications for Android TV / Fire TV”.
    Follow the instruction on TV screen to complete the set up. Just input TV's IP address.

3. create "automation" in home assistant for "sensor" trigger "action".
more details on home assistant webpage: https://www.home-assistant.io/integrations/nfandroidtv

Print this item

  KC868-D8 Dimmer 1-10V, logarithmic
Posted by: bogdan_0 - 05-25-2022, 07:00 AM - Forum: KC868-HxB series Smart Controller - Replies (3)

Hello

1. Is there any setting that I can use KC868-D8 dimmer as "1-10V"?
I have found a led driver din rail format (which would reduce the occupied space in my automation cabinet) but I need to work on 1-10V range instead of 0-10V.
example: https://www.sunricher.com/din-rail-0-1-1...ifications


2. I understand that KC868-D8 is a liniar driver; so in order to achieve a smooth logarithmic turn-on/off of light intensity I should combine it with a logarithmic led driver. please tell if I am wrong.

[Image: 1627051498-why-you-need-dimming-curves-6...q=60&w=300]
source: https://eldoled.com/insights/why-you-nee...ng-curves/

Thank you

Print this item

  Lesson26 - send email notifications by sensor in home assistant
Posted by: admin - 05-24-2022, 09:09 AM - Forum: Home automation training courses - No Replies



# Example configuration.yaml entry for Google Mail.
notify:
  - name: "NOTIFIER_NAME"
    platform: smtp
    server: "smtp.gmail.com"
    port: 587
    timeout: 15
    sender: "YOUR_USERNAME@gmail.com"
    encryption: starttls
    username: "YOUR_USERNAME@gmail.com"
    password: "YOUR_PASSWORD"
    recipient:
      - "RECIPIENT_1@example.com"
      - "RECIPIENT_N@example.com"
    sender_name: "SENDER_NAME"

Print this item

Wink Lesson25 - how to use Apple HomeKit by home assistant
Posted by: admin - 05-23-2022, 03:07 AM - Forum: Home automation training courses - No Replies


1. home assistant -- Configration -- Device & Services +ADD INTEGRATION -- HomeKit

2. find the QRcode of HomeKit "HASS Bridge" in Notifications

3. open "HOME" app by iOS device (iPhone/iPad) scan this QRcode to add devices.

Print this item

  Disappointed with this server...
Posted by: Amaral989 - 05-23-2022, 01:54 AM - Forum: KC868-Server Raspberry Pi4 local server - Replies (5)

The ESP 3.3v is 5v now. 
i can not get ADC to read voltages . This unit just doesn't work like its described.  Angry

Print this item

  ADC pins
Posted by: Amaral989 - 05-22-2022, 03:54 AM - Forum: KC868-Server Raspberry Pi4 local server - Replies (4)

Hello, 
This is all new to me and trying to learn as i go along. 
I have a resistance sensor that reads water tank levels. Full level it reads 33ohms, empty level reads 240ohms. 
I'm trying to understand how to hook this sensor up. I'm assuming it needs to be on ADC 0. 
If it does , i dont see anything occuring . 

Thank you for you help. 
john

Print this item

Wink 【Sensor series program】-#02-Arduino code of KC868-A6 and Laser Sensor
Posted by: KinCony Support - 05-20-2022, 09:03 AM - Forum: KC868-A6 - No Replies

【Sensor series program】-#02-Arduino code of KC868-A6 and Laser Sensor

Code:
#include <U8g2lib.h>
#include <Wire.h>
U8G2_SSD1306_128X64_NONAME_F_SW_I2C u8g2(U8G2_R0,  15, 4, U8X8_PIN_NONE);//SCL IO15  SDA  IO4


void page1() {
  u8g2.setFont(u8g2_font_timR14_tf);// Font 18
  u8g2.setFontPosTop();
  u8g2.setCursor(5,20);
  u8g2.print("Sending Lasers ");
}
void page2() {
  u8g2.setFont(u8g2_font_timR14_tf);// Font 18
  u8g2.setFontPosTop();
  u8g2.setCursor(5,20);
  u8g2.print("Not Sending");
}

void setup() {
  pinMode(0,INPUT);
  pinMode(32,OUTPUT);
  u8g2.setI2CAddress(0x3C*2);
  u8g2.begin();
  u8g2.enableUTF8Print();
 
}
void loop() {
  if(digitalRead(0)==LOW)
  {
   digitalWrite(32,HIGH);
   u8g2.firstPage();
    do
     {
    page1();
     }while(u8g2.nextPage());
  }
  else
     {
      digitalWrite(32,LOW);
         u8g2.firstPage();
    do
     {
       page2();
     }while(u8g2.nextPage());
     }
 
}
       

Print this item

Wink 【Sensor series program】-#01-Arduino code of KC868-A6 and Hall Sensor
Posted by: KinCony Support - 05-20-2022, 03:11 AM - Forum: KC868-A6 - No Replies

【Sensor series program】-#01-Arduino code of KC868-A6 and Hall Sensor

Code:
/*【Sensor series program】Arduino code of KC868-A6 and Hall Sensor*/
/*When the Hall sensor is triggered, Turn on relay 1; Otherwise turn off relay1*/
#include "Wire.h"
#include"PCF8574.h"

PCF8574 pcf8574_RE(0x24,4,15);
int rawValue;

void setup(){

  pinMode(32,INPUT);
  Serial.begin(115200);
  pcf8574_RE.pinMode(P0,OUTPUT);
  pcf8574_RE.pinMode(P1,OUTPUT);
  pcf8574_RE.pinMode(P2,OUTPUT);
  pcf8574_RE.pinMode(P3,OUTPUT);
  pcf8574_RE.pinMode(P4,OUTPUT);
  pcf8574_RE.pinMode(P5,OUTPUT);
  pcf8574_RE.begin();
  for(int i=0;i<6;i++)
  {
   pcf8574_RE.digitalWrite(i,HIGH);
  }
}

void loop(){
  rawValue=analogRead(32);
  Serial.println(rawValue);
  if(rawValue==0)
  {
     
      pcf8574_RE.digitalWrite(P0,LOW);
  }
  else {
      pcf8574_RE.digitalWrite(P0,HIGH);
  }
}
 
   

Print this item

  KC868 H32B in node red and home assistant
Posted by: ahmedwizza - 05-19-2022, 11:52 AM - Forum: KC868-HxB series Smart Controller - Replies (1)

Hello Engineer 

I faced some problem.when I active Alexa bridge and made switch .then connect Alexa node to controller by TCP out 
  all okay .... the sound control by Alexa is okay ...the switch appeared in Alexa app in my phone ...but I cant find the switch in Alexa entities in home assistant to control

as attached photos



Attached Files Thumbnail(s)
           
Print this item