KR602M RFID access reader with keyboard 13.56MHz Wiegand IP65

Code: LA162077D
€29,78 €24,61 excl. VAT
Skladem (25 pcs)
Delivery to:
16/12/2024

KR602M RFID access reader with keypad 13.56MHz Wiegand IP65

Detailed information

Free Shipping
Free Shipping
From 100 EUR
30 Days to Return
30 Days to Return
For Registered
30 Days to Return
30 Days to Return
For Registered Customers
Free Shipping
Free Shipping
For orders from 100 EUR
It Doesn't End With Shipping
Customer Care
We handle complaints within 5 days
Quick dispatch
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.

LaskaKit-KR602-dim

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!

Do not fill out this field:
Do not fill out this field:
R Avatar of author program pro Arduino 12/11/2023 15:20
#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