A warehouse automation system uses sensors, motors, scanners, and controllers to move products accurately and safely. The Allen-Bradley Micro850 is a compact programmable logic controller, or PLC, often used to coordinate small and medium automation tasks such as conveyors, sorters, gates, and alarms. In logistics, a PLC matters because it can make fast, repeatable decisions based on real-time signals from the equipment.
This helps reduce jams, missed packages, and unsafe machine behavior.
Key Facts
- A PLC reads inputs, runs a control program, and updates outputs in a repeating scan cycle.
- Basic scan time relationship: scan time = input read time + program execution time + output update time.
- Digital inputs detect on or off signals such as limit switches, photoeyes, and push buttons.
- Digital outputs switch devices such as motor starters, indicator lights, solenoids, and relays.
- Conveyor speed relation: v = d/t, where v is speed, d is distance, and t is travel time.
- Throughput estimate: packages per hour = 3600/s, where s is average seconds per package.
Vocabulary
- PLC
- A programmable logic controller is an industrial computer that controls machines by reading inputs and switching outputs according to a program.
- Micro850
- The Micro850 is an Allen-Bradley compact PLC used for machine control with configurable digital, analog, and communication options.
- Input
- An input is a signal sent to the PLC from a device such as a sensor, button, scanner, or switch.
- Output
- An output is a signal sent by the PLC to control a device such as a motor contactor, stack light, valve, or buzzer.
- Interlock
- An interlock is a control condition that prevents an action unless required safety or process conditions are satisfied.
Common Mistakes to Avoid
- Confusing inputs and outputs is wrong because sensors usually report conditions to the PLC, while actuators receive commands from the PLC.
- Ignoring scan time is wrong because a PLC does not react continuously, it reacts once per scan, so very fast events may need special high-speed inputs or proper timing logic.
- Wiring every device directly to full motor power is wrong because PLC outputs often control relays, contactors, or drives rather than carrying the full load current.
- Treating an emergency stop as normal program logic is wrong because safety functions must use appropriate safety-rated hardware and design practices, not only standard PLC code.
Practice Questions
- 1 A conveyor moves a package 12 m in 8 s. Calculate the conveyor speed in m/s.
- 2 A photoeye detects one package every 4 s on average. Estimate the throughput in packages per hour using packages per hour = 3600/s.
- 3 A sorter should only activate when a barcode is valid, the exit lane is clear, and the guard door is closed. Explain how these three signals could be used as an interlock in PLC logic.