Wish List 0

Kq 330 Power Line Carrier Communication Module

Rs. 1,251.00 Rs. 1,439.00

  • Product Code: SEN-COM
  • SKU - SE-2974
  • Availability: In Stock
  • Price in reward points: 11
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
-KQ-330 Power Line Carrier module is designed to communicate between two devices through Power line (e.g 220V power line) without any extra components.
-The PLC can transmit the broadband data via the power lines, which are suitable for either residential (at-home) or commercial (offices, apartments, hotels, warehouses) network applications, which utilize power lines.
-No need to install new wires anymore or you can connect the internet anywhere with the PLC.
-These adapters enable the effortless creation of a high-speed network that supports video, voice, and data.
-Power line communication (PLC) carries data on a conductor that is also used simultaneously for AC electric power transmission or electric power distribution to consumers.
-It is also known as power line carrier, power-line digital subscriber line (PDSL), mains communication, power line telecom (PLT), power line networking (PLN), and broadband over power lines (BPL).
-The current application areas are mainly concentrated in the intelligent home.
-Intelligent utilities such as remote meter, reading system, street lighting remote such as various types of devices data acquisition.

Features:
-Supports Both RS232 and TTL Interface.
-Universal supply works over a power line voltage range of 85 to 265
-VAC, 50~60Hz
-Support QAM 256/64/16, DQPSK, DBPSK and ROBO modulation schemes
-Up to 85 Mbps data rate on the power line
-56-bit DES Link Encryption with key management for security.
-Low power consumption

Applications:
-Offices
-Apartments
-Hotels
-warehouses
-Network Applications

SPECIFICATIONS:

-Operating frequency 120 ~ 135KHZ, interface baud rate 9600bps. The actual baud rate 100bps.

-Receiving sensitivity ≤1mV

-The band rejection ≥ 60 dB  

-Bandwidth ≤10 KHZ    

-Insulation resistance:  500V  ≥ 500M [Omega]

-Power supply: DC + 5V when the receiver: ≤11mA sent ≤230mA

-Power frequency withstands voltage: AC test between GND 3000V 1min no breakdown, no leakage current.

OVERVIEW:

-Integrate the KQ-330F module and the external circuit carrier

-wave board without other coupled components, directly connected

-to the 220V AC.

-The max length of 1 frame continuous transmission ?252 bytes, user 

-can set  from 1 to 252, and the module does not send redundant date.

-Power Frequency insulating withstand voltage:3000V 1min testing

-with AC and GND no breakdown, no leakage current.

-Anti-lightning :Inner panel TVS tube protection, not only the PCB circuit

-layout material selection but also the components selection are according

-to wide temperature, high withstand voltage and anti high pressure shock design.

PACKAGE INCLUDES:

1 PCS x Kq 330 Power Line Carrier Communication Module


//SOURCE CODE TAKEN FROM BELOW LINK

//https://learn.linksprite.com/arduino/powerline-communication/power-line-carrier-modules-application-on-pcduino/

const int led = 13;

 

int flag=0;

 

void setup()

 

{

 

Serial.begin(19200);

 

pinMode(led,OUTPUT);

 

}

 

void loop()

 

{

 

char dat;

 

if(Serial.available())

 

{

 

dat = Serial.read();

 

Serial.write(dat);

 

}

 

else

 

{

 

Serial.print(“www.linksprite.com\r\n”);

 

delay(2000);

 

if(flag==0)

 

{

 

flag=1;

 

digitalWrite(led,HIGH);

 

}

 

else

 

{

 

flag=0;

 

digitalWrite(led,LOW);

 

}

 

}

 

}

15 days

Write a review

Please login or register to review