Table of Contents
- Turnstile Types for India
- RFID Card Integration
- Wiegand Protocol
- Controller and Software
- Indian Installation Guide
- FAQ
Turnstile Types for India
An access control turnstile physically enforces card-based entry in Indian offices, factories, and institutions. Types commonly installed in India:
- Tripod turnstile (Rs 15,000-35,000): Three rotating arms at waist height. Fast throughput (25-30 persons/min). Most common in Indian offices and banks. Cannot prevent tailgating effectively (person can duck under arms).
- Flap barrier / Speed gate (Rs 40,000-120,000): Glass or polycarbonate flaps that open on valid card. Most popular in Indian IT parks and premium office towers. Fast (30-40 persons/min), aesthetically premium.
- Full-height turnstile (Rs 25,000-60,000): Full-height rotating cage. Maximum security – prevents climbing over. Used in Indian factories, prisons, and high-security facilities.
- Drop-arm / Optical turnstile (Rs 20,000-50,000): Low profile, ADA-compliant, used at airport-style security lines in Indian government buildings.
RFID Card Integration
Most Indian office turnstiles accept standard Wiegand RFID readers. 125kHz EM4100 cards (Rs 10-20 each) are the most common but insecure (easily cloned). 13.56MHz Mifare cards (Rs 30-80 each) provide better security. For new Indian office installations, specify Mifare DESFire EV3 readers for compliance with upcoming BIS access control standards. The turnstile controller accepts the Wiegand output from the RFID reader and controls the barrier motor based on access granted/denied decision.
Wiegand Protocol
The Wiegand protocol is the universal interface between RFID reader and access controller. Wiegand-26 (26-bit format) is standard: 8-bit facility code + 16-bit card number + 2 parity bits on two wires (D0 and D1, also called DATA0/DATA1). All mainstream Indian turnstile brands (ESSL, Hikvision, ZKTeco) support Wiegand-26 input. Arduino can decode Wiegand signals for DIY integration or card enrollment verification:
// Wiegand-26 decode on Arduino
volatile uint32_t cardCode=0;
volatile int bitCount=0;
unsigned long lastBitTime=0;
void IRAM_ATTR d0ISR(){
cardCode=(cardCode<<1)|0; bitCount++; lastBitTime=millis();
}
void IRAM_ATTR d1ISR(){
cardCode=(cardCode<<1)|1; bitCount++; lastBitTime=millis();
}
void setup(){
attachInterrupt(digitalPinToInterrupt(2),d0ISR,FALLING);
attachInterrupt(digitalPinToInterrupt(3),d1ISR,FALLING);
}
void loop(){
if(bitCount==26 && millis()-lastBitTime>25){
uint32_t facilityCode=(cardCode>>17)&0xFF;
uint32_t cardNumber=(cardCode>>1)&0xFFFF;
Serial.print("Facility: "); Serial.print(facilityCode);
Serial.print(" Card: "); Serial.println(cardNumber);
bitCount=0; cardCode=0;
}
}
Controller and Software
Access control software for Indian installations:
- ESSL eSSL Time Track Pro: Most popular in Indian SMEs. Handles up to 30,000 employees. Windows software, SQL database. Rs 5,000-15,000 depending on features.
- ZKTeco ZKAccess: Free client software with ZKTeco hardware. Cloud option available.
- Hikvision iVMS-4200: Integrated with Hikvision cameras and access control hardware.
- Open-source alternative: Doods, OpenACS on Raspberry Pi for smaller organisations without server infrastructure budget.
Indian Installation Guide
- Floor mounting: Turnstiles require concrete anchoring (M10 or M12 bolts in 50mm deep concrete holes). Indian office floors are typically 100-150mm RCC – sufficient for standard tripod turnstiles.
- Cabling: Run Cat6 for RFID reader and RS-485 for controller. Separate from 230V power wiring (minimum 15cm separation in conduit). Turnstile power: 230V/50Hz directly from UPS-protected circuit.
- UPS requirement: Turnstiles must remain functional during power cuts – always power from UPS. A 1000VA UPS provides 2-3 hours of turnstile operation during cuts. Fail-safe mode: most Indian turnstiles default to unlocked position on power failure (allows emergency egress).
Frequently Asked Questions
What is the throughput rate of turnstiles for Indian peak hours?
Tripod turnstile throughput: 25-30 persons per minute (one person every 2 seconds). Flap barrier: 30-40 persons per minute. In Indian offices, typical peak entry rush is 9:00-9:30am with 100-500 employees arriving. For 300 employees in 30 minutes: 10 persons per minute needed = one tripod turnstile is sufficient. For 500 employees in 15 minutes: 33 persons per minute = two tripod turnstiles or one flap barrier.
Can I add a camera to capture photos at the turnstile on every entry?
Yes – mount a Raspberry Pi with camera module or OV2640 Arduino camera above the turnstile aimed at face height. Trigger capture on valid card read signal (connect to turnstile access granted output signal). Store images with employee ID and timestamp. This creates a photo audit trail for security verification alongside the RFID log.
Is the Wiegand protocol used in all Indian turnstiles?
Yes – Wiegand is the universal RFID reader-to-controller interface in India. All mainstream Indian brands (ESSL, ZKTeco, Hikvision, Godrej, HID) and Chinese imports use Wiegand-26 by default. Higher-end installations use Wiegand-34 (34-bit for more users) or OSDP protocol over RS-485 which supports encrypted communication and bidirectional communication between reader and controller.
What is the maintenance requirement for turnstiles in Indian conditions?
Monthly: clean dust from sensor eyes (optical tailgate detection), lubricate rotating arm bearings with silicone spray (avoid oil-based lubricants that collect dust), check all cable connections. Annual: replace rubber arm cushion pads, inspect motor drive belt condition, test emergency fail-safe mode by triggering a power cut and confirming turnstile defaults to open position. Indian summer dust requires more frequent cleaning than European installations.
Add comment