

The Micrologix 1100 PLC is a compact and versatile programmable logic controller (PLC) designed by Micrologix for small to medium automation applications. It combines built-in input/output (I/O) capabilities, communication ports, and advanced programming features, making it an ideal choice for industrial control systems, process automation, and machine control.








| Specification | Value |
|---|---|
| Manufacturer | Micrologix |
| Part ID | Micrologix 1100 |
| Power Supply Voltage | 24V DC or 120/240V AC |
| Digital Inputs | 10 (24V DC) |
| Digital Outputs | 6 (Relay) |
| Analog Inputs | 2 (10-bit resolution, 0-10V DC) |
| Communication Ports | Ethernet, RS-232/RS-485 Combo Port |
| Programming Software | RSLogix 500 |
| Memory | 4 KB User Program, 4 KB User Data |
| Expansion Capability | Up to 4 expansion I/O modules |
| Operating Temperature Range | 0°C to 55°C (32°F to 131°F) |
| Dimensions | 90 x 110 x 87 mm (H x W x D) |
| Pin Number | Description | Voltage Range | Notes |
|---|---|---|---|
| I:0/0 | Digital Input 0 | 24V DC | Sourcing or sinking input |
| I:0/1 | Digital Input 1 | 24V DC | Sourcing or sinking input |
| I:0/2 | Digital Input 2 | 24V DC | Sourcing or sinking input |
| I:0/3 | Digital Input 3 | 24V DC | Sourcing or sinking input |
| I:0/4 | Digital Input 4 | 24V DC | Sourcing or sinking input |
| I:0/5 | Digital Input 5 | 24V DC | Sourcing or sinking input |
| I:0/6 | Digital Input 6 | 24V DC | Sourcing or sinking input |
| I:0/7 | Digital Input 7 | 24V DC | Sourcing or sinking input |
| I:0/8 | Digital Input 8 | 24V DC | Sourcing or sinking input |
| I:0/9 | Digital Input 9 | 24V DC | Sourcing or sinking input |
| Pin Number | Description | Type | Voltage/Current Rating |
|---|---|---|---|
| O:0/0 | Digital Output 0 | Relay | 240V AC/2A or 30V DC/2A |
| O:0/1 | Digital Output 1 | Relay | 240V AC/2A or 30V DC/2A |
| O:0/2 | Digital Output 2 | Relay | 240V AC/2A or 30V DC/2A |
| O:0/3 | Digital Output 3 | Relay | 240V AC/2A or 30V DC/2A |
| O:0/4 | Digital Output 4 | Relay | 240V AC/2A or 30V DC/2A |
| O:0/5 | Digital Output 5 | Relay | 240V AC/2A or 30V DC/2A |
| Pin Number | Description | Voltage Range | Resolution |
|---|---|---|---|
| AI:0/0 | Analog Input 0 | 0-10V DC | 10-bit |
| AI:0/1 | Analog Input 1 | 0-10V DC | 10-bit |
Power Supply Connection:
Input Connections:
Output Connections:
Communication Setup:
Programming:
The Micrologix 1100 can communicate with an Arduino UNO via RS-232. Below is an example of Arduino code to send data to the PLC:
#include <SoftwareSerial.h>
// Define RX and TX pins for SoftwareSerial
SoftwareSerial plcSerial(10, 11); // RX = pin 10, TX = pin 11
void setup() {
// Start serial communication with the PLC
plcSerial.begin(9600); // Set baud rate to match PLC settings
Serial.begin(9600); // For debugging on the Serial Monitor
Serial.println("Arduino to Micrologix 1100 Communication Started");
}
void loop() {
// Example: Send a command to the PLC
String command = "DATA:123"; // Replace with actual PLC command
plcSerial.println(command); // Send command to PLC
// Check for response from the PLC
if (plcSerial.available()) {
String response = plcSerial.readString();
Serial.println("PLC Response: " + response); // Print response to Serial Monitor
}
delay(1000); // Wait 1 second before sending the next command
}
Note: Ensure the RS-232 to TTL converter is used to interface the Arduino with the PLC.
PLC Not Powering On:
Inputs Not Responding:
Outputs Not Activating:
Communication Failure:
Q: Can the Micrologix 1100 be programmed wirelessly?
A: No, the Micrologix 1100 does not support wireless programming. Use Ethernet or serial communication for programming.
Q: What is the maximum expansion capability of the Micrologix 1100?
A: The PLC supports up to 4 expansion I/O modules.
Q: Can I use third-party software to program the Micrologix 1100?
A: No, the Micrologix 1100 is programmed exclusively using RSLogix 500 software.
Q: How do I reset the PLC to factory settings?
A: Use the RSLogix 500 software to clear the program and reset the PLC to its default state.
Q: Is the Micrologix 1100 suitable for high-speed applications?
A: The Micrologix 1100 is designed for small to medium automation tasks and may not be suitable for high-speed or time-critical applications.