Production counter displays are a staple of Indian manufacturing floors — showing real-time output counts, targets, and efficiency metrics. These Andon-style displays keep workers informed and motivated while providing managers with live data. Building a custom production counter costs a fraction of commercial industrial displays while offering greater flexibility.
Why Production Counters Matter
- Real-time visibility: Workers see current production count vs target
- Motivation: Visible targets drive productivity improvement
- Early warning: Falling behind target is immediately visible
- Management reporting: Historical data for shift analysis
- Cost: DIY counter Rs.2,000-5,000 vs commercial Rs.15,000-50,000
Sensor Options for Counting
- Infrared break-beam sensor: Detects objects passing through a gap. Best for conveyor lines.
- Photoelectric sensor: Detects objects at a distance. Good for larger items.
- Proximity sensor (inductive/capacitive): Detects metal or any material. Good for press machines.
- Mechanical microswitch: Physical contact trigger. Most reliable but requires mechanical integration.
- Manual button: Operator presses after each unit. Simplest but depends on human action.
Large Format LED Display Design
Use cascaded MAX7219 or large seven-segment displays:
- Line 1: ACTUAL count (large digits, green)
- Line 2: TARGET count (smaller digits, red)
- Line 3: Efficiency percentage or variance
For visibility across a factory floor (15-30 metres), use 4-inch digit height minimum.
Shift Targets and Progress Tracking
// Basic production counter with shift target
int actual = 0;
int target = 500; // Per shift target
unsigned long shiftStart;
void countPart() {
actual++;
updateDisplay();
checkTarget();
}
void checkTarget() {
float elapsed = (millis()-shiftStart) / 3600000.0; // Hours
float expected = target * (elapsed / 8.0); // 8-hour shift
if (actual < expected * 0.9) {
setAlertColour(RED); // Behind target
}
}
OEE Calculation and Display
OEE (Overall Equipment Effectiveness) is the gold standard metric:
- Availability: Running time / planned production time
- Performance: (Ideal cycle time x total count) / running time
- Quality: Good count / total count
- OEE = A x P x Q
Display the OEE percentage alongside the production count for a complete factory visibility system.
Data Logging and Reporting
- Log each count event with timestamp to SD card or ESP32 SPIFFS
- Push data to a database via WiFi (MySQL, InfluxDB, or Google Sheets)
- Generate shift reports automatically at shift end
- Create dashboards using Grafana for historical trend analysis
Industrial Enclosure Requirements
- IP54 minimum for factory environments (dust and splash protection)
- Steel or heavy-duty plastic enclosure
- Anti-vibration mounting for machine-adjacent installations
- Polycarbonate window for display visibility and protection
- Consider ambient temperature: Indian factories can exceed 45 degrees C in summer
Recommended Display Modules
Frequently Asked Questions
What sensor is best for counting parts on a conveyor?
Infrared break-beam sensors are the most reliable and affordable. They detect any object that interrupts the beam, regardless of material or colour.
Can this system integrate with ERP?
Yes. Using ESP32 with WiFi, push count data via REST API to any ERP system (SAP, Odoo, Tally) or cloud database.
How accurate are these counters?
With proper sensor placement, accuracy is 99.9%+. The main failure mode is double-counting from sensor bounce, which is fixed with software debouncing.
Shop Display Modules at Zbotic.in
India’s trusted source for OLED, LCD, TFT, LED matrices, and more. Fast shipping across India.
Add comment