KR602M RFID access reader with keyboard 13.56MHz Wiegand IP65
Code: LA162077D![Free Shipping](https://cdn.myshoptet.com/usr/www.laskakit.cz/user/banners/doprava-orange_en.png?6137afa6)
Free Shipping
From 100 EUR
![30 Days to Return](https://cdn.myshoptet.com/usr/www.laskakit.cz/user/banners/vraceni-orange_en.png?6137afcf)
30 Days to Return
For Registered
![30 Days to Return](https://cdn.myshoptet.com/usr/www.laskakit.cz/user/banners/vraceni_en.png?6137aff2)
30 Days to Return
For Registered Customers
![Free Shipping](https://cdn.myshoptet.com/usr/www.laskakit.cz/user/banners/doprava_en.png?6137b00f)
Free Shipping
For orders from 100 EUR
![It Doesn't End With Shipping](https://cdn.myshoptet.com/usr/www.laskakit.cz/user/banners/nekonci_en.png?6137b034)
Customer Care
We handle complaints within 5 days
![Quick dispatch](https://cdn.myshoptet.com/usr/www.laskakit.cz/user/banners/expedice_en.png?6137b053)
Quick dispatch
Within 24 hours
Product detailed description
Waterproof RFID reader with push-button keypad suitable for controlling access to a building using an RFID card, RFID key fob or numeric code with integrated buzzer and LED for signalling. It uses WG26/34 communication.
Specifications:
- Frequency: 13.56MHz
- Power supply: 12V
- Consumption: 70mA
- RFID reading range: 5 - 10cm
- Degree of protection: IP65 (outdoor use)
- Dimensions: 86x86x20mm
Connection:
- Red: VCC
- Black: GND
- White: D1
- Green: D0
- Purple: Buzzer (active in L - connection to GND)
- Grey: green LED (active in L - connection to GND)
- Yellow: WG26/WG34 (active in L - connection to GND)
- 34bit(Default)/26bit - yellow L - connection to GND
Included in delivery:
- 1pc KR602M RFID access system with keypad 13.56MHz Wiegand IP55
Remark:
- This product is not a standalone functional unit and may require professional installation.
- Product images are for illustration purposes only and may sometimes differ from the actual appearance of the item. However, this does not change its basic properties.
Additional parameters
Category: | RFID chips, readers and modules |
---|---|
Warranty: | 2 years |
Weight: | 0.188 kg |
Be the first who will post an article to this item!
Add a rating
R
program pro Arduino
Robert
#include
WIEGAND wg;
void setup() {
Serial.begin(9600);
wg.begin(2, 3);
}
void loop() {
if (wg.available()) {
unsigned long code = wg.getCode();
Serial.print("Wiegand Type: ");
Serial.print(wg.getWiegandType());
Serial.print(", Data: ");
// Pro Wiegand typ 8, výpis číselných hodnot pro Enter a Esc
if (wg.getWiegandType() == 8) {
Serial.print(", Number: ");
if (code == 13) {
Serial.println("Enter");
} else if (code == 27) {
Serial.println("Esc");
} else {
Serial.println(code);
}
}
// Pro Wiegand typ 34, výpis desítkové hodnoty s vedoucími nulami
else if (wg.getWiegandType() == 34) {
char formattedNumber[11]; // Dostatečně velký buffer pro 34bitové číslo
sprintf(formattedNumber, "%010lu", code); // Formátování s vedoucími nulami
Serial.print(", Decimal Number: ");
Serial.println(formattedNumber); // Výpis s vedoucími nulami
}
Serial.println(); // Nový řádek pro oddělení každého výpisu
}
}
Reply
Reply