Kq 330 Power Line Carrier Communication Module
Rs. 1,251.00 Rs. 1,439.00
- Product Code: SEN-COM
- SKU -
- Availability: 2-3 Days
- Price in reward points: 11
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
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