Interactive demonstration of bit and word addressing in PLC memory
| Bit Address | Value | Byte Address | Word Address | Real Address |
|---|
| Bit Address | Value | Byte Address | Word Address | Real Address |
|---|
| Bit Address | Value | Byte Address | Word Address | Real Address |
|---|
Bit Addressing: I0.0-I0.7, I1.0-I1.7... addresses individual bits in memory (8 bits per byte)
Byte Addressing: IB0, IB1... addresses 8 consecutive bits as a single byte
Word Addressing: IW0 addresses bits I0.0-I1.7 (16 bits), IW1 addresses bits I2.0-I3.7 (next 16 bits)
Real Addressing: ID0 addresses 32 consecutive bits (I0.0-I3.7) as a single 32-bit real number
Key Insight: I0.0 is the least significant bit (LSB) of word IW0. When you change I0.0, you're changing bit 0 of IW0!
Memory Layout: Input (I), Output (Q), and Memory (M) are separate areas in PLC RAM, each with their own bit and word addressing.
Examples: Bit = Sensor status, Byte = Small counter, Word = Temperature value, Real = Precise measurements