Ignore Unsigned Ranges: Difference between revisions

From Visuino
Jump to navigation Jump to search
Created page with "Image:TArduinoIgnoreUnsignedRanges.png == Summary == Filters out unsigned values that fall within specified ranges. == Description == The **Ignore Unsigned Ranges** component checks incoming unsigned values against a list of defined **Range** elements. If the value is inside one of the ranges, it will be marked as **ignored**. Otherwise, the value passes through the **Out** pin. This component is useful when you want to block specific intervals of value..."
 
(No difference)

Latest revision as of 23:55, 22 August 2025

File:TArduinoIgnoreUnsignedRanges.png

Summary

Filters out unsigned values that fall within specified ranges.

Description

The **Ignore Unsigned Ranges** component checks incoming unsigned values against a list of defined **Range** elements. If the value is inside one of the ranges, it will be marked as **ignored**. Otherwise, the value passes through the **Out** pin. This component is useful when you want to block specific intervals of values while allowing all others to continue.

Diagram:

Categories

Properties

  • Enabled – Enables or disables the component.
  • Elements – Collection of **Range** elements. Each range specifies a **Min** and **Max** unsigned value to be ignored.

Pins

Input Pins

  • In – Unsigned value input to be checked against the defined ranges.

Output Pins

  • Out – Passes values that are not ignored.
  • Ignored – Boolean output, **True** when the input value falls inside a defined range.