0
0
FreertosHow-ToBeginner · 4 min read

How to Add IO Modules in RSLogix for PLC Programming

To add IO modules in RSLogix, open the RSLogix 5000 project, go to the Controller Organizer, right-click I/O Configuration, and select Add Module. Then choose the correct module type and configure its properties like slot number and address to integrate it into your PLC program.
📐

Syntax

Adding IO modules in RSLogix involves these steps:

  • Right-click on I/O Configuration in the Controller Organizer.
  • Select Add Module from the menu.
  • Choose the Module Type from the list (e.g., Digital Input, Digital Output).
  • Set the Slot Number where the module is physically installed.
  • Configure Module Properties such as name and address.

This process links the physical IO hardware to your PLC program.

freertos
Right-click 'I/O Configuration' -> Add Module -> Select Module Type -> Set Slot Number -> Configure Properties
💻

Example

This example shows how to add a 1756-IB16 digital input module in slot 3:

freertos
1. Open RSLogix 5000 project.
2. In Controller Organizer, right-click 'I/O Configuration'.
3. Click 'Add Module'.
4. In the 'Select Module' window, choose '1756-IB16' (16 Point Input Module).
5. Set the 'Slot' to 3.
6. Name the module, e.g., 'Input_Module_3'.
7. Click 'OK' to add the module.
8. The module now appears under I/O Configuration and can be used in your ladder logic.
Output
Module 'Input_Module_3' added at slot 3 under I/O Configuration.
⚠️

Common Pitfalls

Common mistakes when adding IO modules include:

  • Choosing the wrong module type, causing communication errors.
  • Setting the wrong slot number, which does not match the physical hardware.
  • Not naming the module clearly, making program maintenance harder.
  • Forgetting to download the updated configuration to the PLC after adding modules.

Always verify the physical slot and module type before adding.

freertos
Wrong way:
- Adding a module with slot 2 when the hardware is in slot 3.
Right way:
- Confirm physical slot is 3, then add module with slot 3.
📊

Quick Reference

StepActionNotes
1Right-click I/O ConfigurationAccess module settings
2Select Add ModuleOpen module selection window
3Choose Module TypeMatch physical hardware model
4Set Slot NumberMust match physical slot
5Name ModuleUse clear, descriptive names
6Click OKAdd module to project
7Download to PLCApply changes to hardware

Key Takeaways

Always match the module type and slot number to the physical hardware.
Use clear names for IO modules to simplify program management.
Right-click I/O Configuration and select Add Module to start adding IO modules.
Download the updated project to the PLC after adding or changing modules.
Verify module settings to avoid communication and addressing errors.