Modbus vs PROFIBUS: Two Industrial Protocols, Very Different Eras
Modbus vs PROFIBUS: Two Industrial Protocols, Very Different Eras
TL;DR: Modbus is a simple, open, register-based protocol from 1979 that still works on anything. PROFIBUS is a faster, richer device-profile protocol from the early 1990s that carries diagnostics and parameterisation alongside data. Modbus is universal and cheap; PROFIBUS is Siemens-dominant and powerful. Both run on RS-485 physical wiring at the base level. In new projects, both are being replaced by PROFINET and EtherNet/IP on Ethernet — but millions of installed devices still speak both.

Modbus and PROFIBUS both move data between field devices and PLCs over serial wiring. They solve the same problem but with very different philosophies — and knowing the difference matters when you are working with drives, sensors, and controllers from different eras.
What Modbus Is
Modbus is a serial communication protocol published by Modicon in 1979. It defines a simple master/slave model: a master (the PLC) sends requests; each slave (sensor, drive, meter) responds with data. Modbus defines four data types — coils (single-bit outputs), discrete inputs (single-bit inputs), holding registers (16-bit read/write), and input registers (16-bit read-only) — and a small set of function codes for reading and writing them.
That simplicity is Modbus's entire value. The protocol fits in a small microcontroller, requires no proprietary software library, and works the same across every vendor's implementation. A Schneider PLC talking to an ABB drive, a Siemens meter, and a Chinese temperature controller — all over the same RS-485 cable — is a standard Modbus scenario.
Modbus variants:
- Modbus RTU: binary encoding over RS-485 serial. The most common form in the field.
- Modbus ASCII: hex-encoded text over RS-232 or RS-485. Slower, easier to debug with a terminal.
- Modbus TCP: Modbus frame inside TCP/IP over Ethernet. The modern networked form.
Protocol limits: 247 devices per segment, 115,200 baud maximum on RTU, no built-in diagnostics beyond CRC, no device discovery, no parameterisation.
What PROFIBUS Is
PROFIBUS (Process Field Bus) is a fieldbus standard developed by a German consortium (including Siemens) in the late 1980s and standardised as IEC 61158 in 1999. It uses a token-ring bus access mechanism rather than master/slave polling — devices are granted the right to send in sequence, which provides more deterministic timing at high device counts.
Two main variants exist:
- PROFIBUS DP (Decentralised Periphery): for fast I/O communication between PLC and field devices — drives, I/O modules, sensors. This is what most automation engineers encounter. DP uses RS-485 cabling at up to 12 Mbit/s.
- PROFIBUS PA (Process Automation): uses MBP (Manchester Bus Powered) encoding for intrinsically safe areas in process plants. PA devices are powered from the bus cable and can live in hazardous areas. PA runs slower (31.25 kbit/s) but carries two-wire power + data to instruments in Zone 1.
PROFIBUS DP carries more than just process values: it supports GSD files (Generic Station Description) that describe a device's available data objects, parameterisation channels, and diagnostic bytes. When you add a Siemens drive to a PROFIBUS DP network in TIA Portal, TIA Portal reads the GSD file and knows exactly what data the drive offers, how to configure it, and what its diagnostics mean.
Side-by-Side Comparison
| | Modbus RTU | PROFIBUS DP | |---|---|---| | Origin | Modicon, 1979 | German consortium, 1989 | | Physical layer | RS-485 (2-wire) | RS-485 (2-wire, same cable type) | | Max speed | 115,200 baud | 12 Mbit/s | | Bus access | Master/slave polling | Token ring | | Max devices | 247 per segment | 126 per segment | | Data model | Registers + coils | Device profiles (cyclic + acyclic) | | Diagnostics | None built-in | Yes — device diagnostic bytes | | Parameterisation | Not supported | Yes — acyclic channel | | Device files | None (manual register map) | GSD file (vendor-supplied) | | Vendor neutral? | Yes — fully open | Mostly Siemens-dominated | | Free to implement | Yes | Yes (IEC 61158) | | Still in new projects? | Yes (simple devices, RTUs) | Rarely — replaced by PROFINET |
Physical Layer — The Same Cable, Different Protocols
Both Modbus RTU and PROFIBUS DP use RS-485 physical wiring — two twisted-pair conductors, shielded, with termination resistors at each end of the bus. The cable pinout and installation rules are similar enough that beginners sometimes mistake one for the other on a physical inspection. What differs is the protocol riding on the cable.
PROFIBUS DP specifies tighter cable requirements (cable impedance 135–165 Ω, specific DB9 connector) and has a maximum cable length that varies with baud rate (100m at 12 Mbit/s, 1200m at 187.5 kbit/s). Modbus RTU at 9600 baud can run well over 1000m with reasonable cable.
The wiring lab for RS-485 Modbus covers the physical layer in practice — how to wire the daisy-chain topology, where to place termination, and how to debug a network that is not communicating.
Speed and Determinism
At 12 Mbit/s, PROFIBUS DP can update an entire network of 30 drives in well under 10 ms — sufficient for coordinated motion. Modbus RTU at 115,200 baud with 10 slaves takes tens to hundreds of milliseconds for a full poll cycle depending on payload size. For synchronised multi-drive applications, PROFIBUS DP is materially faster.
The token ring bus access of PROFIBUS DP also provides more predictable worst-case timing. Modbus polling is strictly sequential — if the master is polling slave 1 when slave 7 needs to report a fault, slave 7 waits. PROFIBUS's token mechanism provides fairer access under heavy load.
When Modbus Is the Right Answer Today
- Simple sensors and meters that publish a handful of registers: power meters, flow meters, temperature transmitters, pressure transmitters. Every manufacturer supports Modbus.
- RTUs and telemetry in utility SCADA systems where the remote device might be a third-party box from any vendor.
- Mixed-vendor panels where the alternative is forcing every device to speak a proprietary protocol.
- Long-range serial links where cost matters and speed does not (serial Modbus over a 2-wire run to a remote pump station).
- Retrofits onto existing RS-485 wiring that already carries Modbus.
Practise reading Modbus registers from a PLC in the Modbus register read scenario — it runs in the browser and auto-grades your logic.
When PROFIBUS Was the Right Answer
PROFIBUS DP became dominant in European process and discrete manufacturing from the mid-1990s through to the mid-2010s. If you are working on a plant installed during that era, you will encounter PROFIBUS DP on drives, I/O clusters, and smart instruments. Understanding GSD files, network topology rules, and the PROFIBUS diagnostic structure is practical maintenance knowledge.
In new projects since roughly 2015, PROFIBUS DP has been largely replaced by PROFINET (Industrial Ethernet). PROFINET carries the same device profile concept as PROFIBUS but runs on standard Ethernet hardware at 100 Mbit/s or 1 Gbit/s, with IRT (Isochronous Real Time) for motion-critical applications. See the PROFINET vs EtherNet/IP comparison for the Ethernet-era perspective.
Real Plant Examples
Food processing line (Modbus RTU): A Danfoss VFD on a conveyor reports speed feedback and fault status over Modbus RTU at 9600 baud to a Mitsubishi PLC. The Danfoss register map is in the drive's manual. The PLC engineer hard-coded the register addresses. It has worked without modification for 12 years and there is no reason to change it.
Packaging line (PROFIBUS DP): Eight Siemens G120 drives on a form-fill-seal machine communicate over PROFIBUS DP at 12 Mbit/s to a Siemens S7-300 PLC. TIA Portal reads the G120 GSD files and automatically configures the cyclic data exchange. The drives report motor current, torque setpoint, and fault codes back to the PLC every 2 ms. The production engineer can see all drive diagnostics in real time on the HMI.
Frequently Asked Questions
Q: Can Modbus and PROFIBUS share the same RS-485 cable?
A: No. Modbus RTU and PROFIBUS DP both use RS-485 at the physical layer but use incompatible electrical signalling and framing. You cannot mix devices speaking different protocols on the same bus segment. Use separate cables or a protocol gateway.
Q: Is PROFIBUS still supported on new Siemens products?
A: Siemens still ships PROFIBUS DP interfaces on current S7-1500 PLCs and SINAMICS drives, but the strategic direction is PROFINET. New Siemens automation projects are built on PROFINET. PROFIBUS interfaces are included for backward compatibility with existing installations.
Q: Can a gateway convert Modbus to PROFIBUS?
A: Yes. Protocol gateways from vendors like HMS (Anybus), Moxa, and ProSoft convert between Modbus RTU/TCP and PROFIBUS DP. This is a common solution for connecting legacy Modbus instruments into a PROFIBUS DP network without replacing the instruments.
Q: Which is easier to learn, Modbus or PROFIBUS?
A: Modbus is simpler to understand and implement — the register model is straightforward, and a basic Modbus RTU exchange can be set up in an afternoon with a register map and a simple PLC function. PROFIBUS DP requires understanding GSD files, hardware configuration tools (TIA Portal, STEP 7), and the cyclic/acyclic channel model. Modbus is the better starting point for learning industrial communications.
Ready to practise reading Modbus registers in a PLC program? The Modbus register read scenario gives you a simulated field device and lets you write the ladder logic to poll it. No hardware required.