- Studio 5000 Logix Designer
- Tasks, programs, and routines
- Add-On Instructions
- Controller Organizer
- Logical Organizer
- Alarms
- Tag-based alarms
- Tag Editor and Data Monitor
- Configure settings for Tag Editor and Data Monitor
- Equipment phases
- Equipment Sequences
- Equipment Sequence Diagrams
- Ladder Editor
- Structured Text Editor
- Sequential Function Chart Editor
- Define the steps of an SFC process
- PlantPAx instruction properties
- Controller Properties
- Editing Controller Properties
- Controller Security
- Source Protection
- License Source Protection for Routines and Add-On Instructions
- Module Information
- 1756 ControlLogix I/O Modules
- Instruction Set
Use bitwise operators
Bitwise operators manipulate the bits within a value based on two values.
The following provides an overview of the bitwise operators.
For | Use this operator | Optimal data type |
bitwise AND | &, AND | DINT |
bitwise OR | OR | DINT |
bitwise exclusive OR | XOR | DINT |
bitwise complement | NOT | DINT |
This is an example.
Use this format | Example | |
For this situation | Use | |
value1 operator value2 | If input1, input2, and result1 are DINT tags and your specification says: "Calculate the bitwise result of input1 and input2. Store the result in result1." | result1 := input1 AND input2; |
Provide Feedback