≤
Bitwig Platform
Outputs high logic whenever the first signal is less than or equal to the second.
What it does
Less Than or Equal is an inclusive lower-side comparator. It stays high below the second signal and also at exact equality.
Controls and ports
| Control | Label | Official description |
|---|---|---|
table |
Truth table | A B ≤ 0 0 1 0 1 1 1 0 0 1 1 1 |
Practical uses
- Keep a branch active until a control signal moves above its threshold.
- Divide a ramp into an inclusive lower region and a complementary upper region.
- Combine it with Greater Than to build non-overlapping threshold logic.
Things to know
- Input order matters.
- Equal finite values output 1.
- The result is a hard binary signal even when both inputs move smoothly.
Technical details
No Nitro implementation has been confirmed for this visible module. The behavior is described conservatively from module metadata and editorial research.
Stateless per-sample comparison: out = (a <= b) ? 1 : 0. The installed truth table confirms that 0/0, 0/1, and 1/1 are high while 1/0 is low.
Open questions
- Confirm the runtime policy for NaN operands.
Version and sources
Checked against Bitwig Studio 6.0.6. This page combines Bitwig's module metadata, the existing Grid course and guides, and Nitro analysis where the mapping is strong enough to support a technical statement.
Related material
- Grid Modules course reference
- Bitwig Logic Modules - Practical Uses for Logic Operators in Modular Patching
Return to Bitwig Grid Modules or the Grid Modules course lesson.
Also matches: Bitwig ≤ module, ≤ Grid module, Bitwig Grid ≤