DEV Community

fluidwire
fluidwire

Posted on • Originally published at fluidwire.com

The First PLC Was Built in 1968

Walk onto almost any factory floor today and the machines are coordinated by a small, rugged industrial computer bolted inside a control cabinet. It is called a programmable logic controller, or PLC, and it is the quiet workhorse behind bottling lines, elevators, water treatment plants, and the connected sensors of modern industrial IoT. The first one was built in 1968, and the story of why it exists explains a design idea that still shapes how we build connected systems.

A wall of wires that nobody wanted to rewire

Before the PLC, factory automation ran on relay logic. A control system was a physical wall of electromechanical relays, timers, and counters, all wired together by hand. If a car maker wanted to change how a production line behaved, an electrician had to rip out and rewire that panel, a process that could take days and stop the line cold. General Motors, retooling its plants every model year, was tired of paying that cost over and over.

So GM put out a now-famous request: build a control system that could be reprogrammed instead of rewired, that could survive a harsh industrial environment, and that ordinary plant electricians could understand without learning to be computer programmers.

The Modicon 084

The answer came from engineer Richard "Dick" Morley and his colleagues at Bedford Associates in Massachusetts. Their machine was called the Modicon 084. The name is a compression of "MOdular DIgital CONtroller," and the 084 simply marked it as the eighty-fourth project the firm had taken on. GM took delivery of its first units in 1969 and was impressed enough to order a million dollars' worth.

The genius of the design was not raw computing power. It was the decision to move the control logic out of copper wiring and into software. A line could now be changed by editing a program rather than rebuilding a panel. Just as importantly, Morley's team kept the programming model familiar: instead of inventing an abstract new language, they used ladder logic, a diagram style that looked almost exactly like the relay wiring schematics electricians already read every day. The barrier to adoption nearly disappeared.

Why a 1968 machine still matters for IoT

That single trade-off, make the logic soft instead of hard, is the same principle behind every embedded device we build now. A microcontroller running firmware is doing conceptually what the Modicon 084 did: turning behavior that used to be fixed in hardware into something you can update, version, and improve in software.

The PLC also never went away. Modern PLCs have grown network interfaces, web servers, and the ability to stream telemetry to the cloud, making them a foundational layer of industrial IoT. When a factory wants predictive maintenance, energy dashboards, or remote monitoring, the data very often starts at a PLC and flows upward through gateways and protocols like MQTT into analytics platforms. The 1968 idea of programmable, electrician-friendly control sits underneath a great deal of today's smart manufacturing.

For engineering students in the Philippines and elsewhere prototyping automation or thesis projects, the lineage is useful to know. The microcontrollers and single-board computers you reach for, an ESP32 driving relays or a Raspberry Pi logging sensor data, are descendants of the same decision Morley made: separate the logic from the wiring so the system can evolve.

Building on the lineage

Good connected systems still respect the lesson of the Modicon 084. Keep the logic reprogrammable, make it understandable to the people who maintain it, and design it to survive the real world it runs in. Those priorities carry all the way from a single sensor node up to a full cloud platform.

If you are turning an industrial process or a hardware idea into a connected product, our team builds IoT and web systems from silicon to cloud, bridging embedded firmware and the dashboards that make its data useful. We are always happy to talk through a project, whether it is a factory integration or a first prototype. The tools have changed enormously since 1968, but the engineering judgment that made the first PLC a success is still exactly what separates a reliable connected system from a fragile one.

Top comments (0)