New pages
Jump to navigation
Jump to search
17 August 2025
- 05:1505:15, 17 August 2025 Accumulate(Integral) Complex (hist | edit) [1,409 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexAccumulate.png == Summary == Accumulates (integrates) a complex input signal over time, starting from an initial value. == Description == The **Accumulate (Integral) Complex** component continuously adds incoming complex values received at its **In** pin to an internal accumulator. The accumulator starts from the **Initial Value** property and updates on each input event. If the **Reset** pin is triggered, the accumulator is cleared and rei...")
- 04:0904:09, 17 August 2025 Compare Complex Value (hist | edit) [1,313 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexCompare.png == Summary == Compares a complex input signal to a predefined complex constant. == Description == The **Compare Complex Value** component compares the complex number received at its **In** pin with the constant defined in the **Value** property. The comparison is performed according to the **Compare Type** property (equal or not equal). The result of the comparison is output as a boolean at the **Out** pin. This is useful whe...")
- 02:2002:20, 17 August 2025 Divide Analog Value by Complex (hist | edit) [1,206 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoAnalogDivideByComplex.png == Summary == Divides a specified Analog Value by a Complex input signal. == Description == The **Divide Analog Value by Complex** component takes an analog value (set by the **Value** property) and divides it by the complex number provided at its **In** pin. The result of the division is a complex output continuously available at the **Out** pin. This is useful for normalizing or scaling analog signals against complex qu...")
- 02:1502:15, 17 August 2025 Conjugate Complex (hist | edit) [844 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexConjugate.png == Summary == Computes the conjugate of a complex number. == Description == The **Conjugate Complex** component outputs the complex conjugate of the input value. For a complex number defined as **a + bi**, its conjugate is **a − bi**. This is useful in signal processing, control systems, and simplifying division of complex numbers. <b>Diagram:</b> Image:TArduinoComplexConjugate.Preview.png == Categories == *Image:TA...")
- 02:1302:13, 17 August 2025 Get Complex Array Item At Index (hist | edit) [1,514 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexArrayGetItem.png == Summary == Retrieves a complex array item at a specified index. == Description == The **Get Complex Array Item At Index** component extracts a single element from a complex array based on the **Index** property or pin. If the specified index is valid, the corresponding complex value is output at the **Out** pin. If the array is empty, the **Empty** pin is triggered. If the index is out of range and '''Ignore Out Of Ran...")
- 02:0802:08, 17 August 2025 Step/Iterate Complex Array Items (hist | edit) [1,337 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexArrayStep.png == Summary == Steps through items in a complex array one at a time. == Description == The **Step/Iterate Complex Array Items** component allows sequential iteration through each element of a complex array. When an array is provided at the **In** pin, the component outputs its items one-by-one at the **Out** pin. Each iteration provides the current element along with its **Index** and the total **Count** of elements. If the a...")
16 August 2025
- 13:3213:32, 16 August 2025 Multiply Complex By Analog Value (hist | edit) [1,059 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexMultiplyByAnalog.png == Summary == Multiplies a complex input signal by a specified analog value. == Description == The **Multiply Complex By Analog Value** component scales a complex number by an analog constant defined in the **Value** property. The input complex signal received at the **In** pin is multiplied by this analog value, and the result is output at the **Out** pin. This is useful for adjusting the amplitude or scaling a complex...")
- 13:2813:28, 16 August 2025 Complex Toggle Demux (hist | edit) [1,176 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexToggleDemux.png == Summary == Routes a complex input signal to one of two outputs based on a boolean toggle. == Description == The **Complex Toggle Demux** component takes a complex input signal at its **In** pin and routes it to either the **True** or **False** output pin depending on the state of the **Select** pin. This allows conditional branching of a complex signal flow for flexible routing and processing. <b>Diagram:</b> Image:TArd...")
- 13:1013:10, 16 August 2025 Complex Change Only (hist | edit) [1,432 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexChangeOnly.png == Summary == Outputs a complex signal only when the input changes beyond a defined threshold. == Description == The **Complex Change Only** component monitors the incoming complex signal at its **In** pin and compares it with the previously stored value. If the difference between the new and the stored value exceeds the specified **Threshold**, the new value is output at the **Out** pin. Additionally, the computed **Differen...")
- 13:0613:06, 16 August 2025 Add Complex Value (hist | edit) [977 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexAdd.png == Summary == Adds a specified complex value to the incoming complex signal. == Description == The **Add Complex Value** component takes the complex number provided at its **In** pin and adds it to the constant complex number specified in the **Value** property. The sum is continuously output at the **Out** pin. This is useful for applying fixed complex offsets or shifts to incoming signals. <b>Diagram:</b> Image:TArduinoComplex...")
- 13:0213:02, 16 August 2025 Complex Toggle Switch (hist | edit) [1,104 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexToggleSwitch.png == Summary == Selects between two complex input signals based on a boolean toggle. == Description == The **Complex Toggle Switch** component allows switching between two complex inputs (**True** and **False**) depending on the state of the **Select** pin. When **Select** is `true`, the **True** input is passed to the **Out** pin; when `false`, the **False** input is passed instead. This is useful when routing or conditional...")
- 12:5912:59, 16 August 2025 Complex Snapshot (hist | edit) [1,010 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexSnapshot.png == Summary == Captures and holds a complex value on a snapshot trigger. == Description == The **Complex Snapshot** component stores the complex number present at its **In** pin when the **Snapshot** pin is triggered. The stored value is then held and continuously output through the **Out** pin until another snapshot event occurs. This is useful for “freezing” a complex signal at a specific point in time for later use or p...")
- 12:5612:56, 16 August 2025 Complex Array Replace Items At Index (hist | edit) [1,253 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexArrayReplaceItemsAtIndex.png == Summary == Replaces one or more items in a complex array at a specified index with new complex values. == Description == The **Complex Array Replace Items At Index** component allows you to overwrite array elements starting at the given **Index** position with new complex values defined in the **Value Elements** collection. The resulting modified array is continuously output through the **Out** pin. This is u...")
- 10:5010:50, 16 August 2025 Complex Array Insert Items (hist | edit) [1,296 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexArrayInsertItems.png == Summary == Inserts one or more complex values into a complex array at a specified index. == Description == The **Complex Array Insert Items** component allows you to add new complex values into an existing array at the given **Index** position. The values to be inserted are defined in the **Value Elements** collection. The updated array, with the new items included, is continuously output through the **Out** pin. T...")
- 10:4610:46, 16 August 2025 Complex Array Delete Items (hist | edit) [1,213 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexArrayDeleteItems.png == Summary == Deletes a specified number of elements from a complex array starting at a given index. == Description == The **Complex Array Delete Items** component removes one or more elements from the input complex array, beginning at the specified **Index** position. The number of elements removed is controlled by the **Count** property. The resulting array, with the selected items deleted, is continuously output thro...")
- 10:4310:43, 16 August 2025 Complex Array Replace (hist | edit) [1,330 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexArrayReplace.png == Summary == Replaces matching elements in a complex array with new specified values. == Description == The **Complex Array Replace** component scans the input complex array for elements defined in the **From Value Elements** list and replaces them with corresponding values from the **To Value Elements** list. The modified array is then output through the **Out** pin. This is useful for substitution operations, remapping s...")
- 10:3910:39, 16 August 2025 Remember Complex Array (hist | edit) [1,550 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoRememberComplexArray.png == Summary == Stores and recalls complex array values using clock-controlled memory. == Description == The **Remember Complex Array** component acts like memory for complex arrays. It stores the array received at its **In** pin whenever the **Remember (Write)** pin is triggered, and it outputs the stored value when the **Recall (Read)** pin is triggered. The currently stored value is also continuously available at the **O...")
- 10:3410:34, 16 August 2025 Complex Array Snapshot (hist | edit) [1,067 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexArraySnapshot.png == Summary == Captures and holds a complex array value on a snapshot trigger. == Description == The **Complex Array Snapshot** component stores the complex array present at its **In** pin whenever the **Snapshot** pin is triggered. The stored array is then held and continuously output at the **Out** pin until another snapshot event occurs. This is useful for freezing the state of a complex array at a specific moment for la...")
- 10:3110:31, 16 August 2025 Repeat Complex Array (hist | edit) [1,012 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoRepeatComplexArray.png == Summary == Repeats the contents of a complex array a specified number of times. == Description == The **Repeat Complex Array** component takes the complex array provided at its **In** pin and outputs a new array where the input values are repeated according to the **Count** property. This is useful when you need to duplicate array data for buffering, pattern generation, or repeated signal structures. <b>Diagram:</b> Ima...")
- 10:2810:28, 16 August 2025 Complex To Complex Array (hist | edit) [1,179 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexToComplexArray.png == Summary == Creates a complex array from multiple complex input values on a clock trigger. == Description == The **Creating Complex To Complex Array** component takes multiple complex inputs and, when the **Clock** pin is triggered, captures all the input values simultaneously and assembles them into a complex array. The resulting array is then output at the **Out** pin until the next clock event. This is useful for bun...")
- 10:2310:23, 16 August 2025 Complex Array Multi Source (hist | edit) [964 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexArrayMultiSource.png == Summary == Distributes a complex array input to multiple outputs simultaneously. == Description == The **Complex Array Multi Source** component takes a single complex array input and replicates it across multiple output pins. This allows the same complex array data to be routed in parallel to different processing or storage components. <b>Diagram:</b> Image:TArduinoComplexArrayMultiSource.Preview.png == Categori...")
- 10:2110:21, 16 August 2025 Complex Array Toggle Demux (hist | edit) [1,152 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexArrayToggleDemux.png == Summary == Routes a complex array input to one of two outputs based on a boolean select signal. == Description == The **Complex Array Toggle Demux** component splits a complex array input into two possible outputs, **True** and **False**. The active output is determined by the boolean value at the **Select** pin. This is useful for conditionally routing a complex array signal into different processing paths. <b>Diag...")
- 10:1910:19, 16 August 2025 Complex Array Demux(Multiple Output channel Switch) (hist | edit) [1,213 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexArrayDemux.png == Summary == Routes a single complex array input to one of multiple output channels based on the selected index. == Description == The **Complex Array Demux (Multiple Output Channel Switch)** component takes a single complex array input and directs it to one of several output channels. The active output channel is selected using the **Select** pin, while all other outputs remain inactive. This is useful for distributing comp...")
- 10:1510:15, 16 August 2025 Complex Array Mux(Multi channel Switch) (hist | edit) [1,187 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexArrayMux.png == Summary == Selects one of multiple complex array input channels and forwards it to the output. == Description == The **Complex Array Mux (Multi Channel Switch)** component allows you to select one of several complex array inputs and route it to the output pin. The input channel is chosen dynamically using the **Select** pin. This is useful when working with multiple complex array sources and needing to dynamically switch bet...")
- 10:1310:13, 16 August 2025 Complex Array On/Off Switch (hist | edit) [1,230 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexArraySwitch.png == Summary == Enables or disables the flow of a complex array signal from input to output. == Description == The **Complex Array On/Off Switch** component allows control over whether a complex array input is passed to the output. When the **Enable** pin is `true`, the input value at **In** is forwarded to the **Out** pin. When disabled, the output is blocked. This is useful for conditionally controlling complex array data...")
- 10:1010:10, 16 August 2025 Complex Array Toggle Switch (hist | edit) [1,249 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexArrayToggleSwitch.png == Summary == Selects between two complex array input signals based on a boolean toggle. == Description == The **Complex Array Toggle Switch** component allows switching between two complex array inputs (**True** and **False**) depending on the state of the **Select** pin. When **Select** is `true`, the **True** input is passed to the **Out** pin; when `false`, the **False** input is passed instead. This is useful when...")
- 08:4808:48, 16 August 2025 Random Complex (hist | edit) [1,298 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexRandom.png == Summary == Generates a random complex number within specified minimum and maximum ranges. == Description == The **Random Complex** component outputs a random complex number at its **Out** pin whenever triggered by the **Clock** input. The generated number is constrained between the specified **Min** and **Max** values for both the real and imaginary parts. This is useful for simulations, testing, and introducing randomized com...")
- 08:3708:37, 16 August 2025 Divide Complex by Complex Value (hist | edit) [1,014 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexDivideByComplex.png == Summary == Divides a complex input value by another complex input value. == Description == The **Divide Complex by Complex Value** component divides the complex number provided at its **In** pin by the complex constant specified in the **Value** property. The result is continuously output at the **Out** pin. This is useful for normalizing or scaling a complex signal using a predefined complex divisor. <b>Diagram:</b>...")
- 08:3308:33, 16 August 2025 Subtract Complex Value (hist | edit) [980 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexSubtract.png == Summary == Subtracts a specified complex Value from the complex input signal. == Description == Use this component to subtract the specified **Value** property from the complex number provided at the **In** pin. The result is output continuously at the **Out** pin. This is useful when you need to offset or adjust a complex signal by a fixed complex amount. <b>Diagram:</b> Image:TArduinoComplexSubtract.Preview.png == C...")
- 08:2908:29, 16 August 2025 Divide Complex Value (hist | edit) [938 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexDivide.png == Summary == Divides a specified value by the value of the complex signal. == Description == Use this component to divide a specified value by the value of the complex signal. The result is output continuously at the **Out** pin. This is useful for scaling, normalizing, or adjusting complex signals using a constant divisor. <b>Diagram:</b> Image:TArduinoComplexDivide.Preview.png == Categories == *Image:TArduinoComplexCat...")
- 08:2008:20, 16 August 2025 Complex Multi Source (hist | edit) [916 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexMultiSource.png == Summary == Provides multiple complex number outputs from a single input source. == Description == The Complex Multi Source component duplicates a single complex input value across multiple output channels. This is useful for distributing one complex value to several processing paths simultaneously without additional wiring duplication. <b>Diagram:</b> Image:TArduinoComplexMultiSource.Preview.png == Categories == *Ima...")
- 08:1608:16, 16 August 2025 Random Quaternion (hist | edit) [1,252 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoRandomQuaternion.png == Summary == Generates random Quaternion values within specified minimum and maximum ranges. == Description == The Random Quaternion component produces random quaternion values each time it is triggered by the Clock pin. The generated values for the Imaginary (X, Y, Z) and Real parts are constrained between the defined Min and Max properties. Optionally, a Seed can be provided to make the random sequence repeatable. <b>Diagram:<...")
- 08:1208:12, 16 August 2025 Quaternion Demux(Multiple Output channel Switch) (hist | edit) [1,231 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoQuaternionDemux.png == Summary == Routes a Quaternion input to one of multiple Quaternion outputs, based on a selected channel index. == Description == The Quaternion Demux (Multiple Output Channel Switch) component takes a single Quaternion input and directs it to one of several output channels, determined by the Select pin. This is useful for distributing quaternion data (e.g., orientation values) across different branches of a project or selectivel...")
- 07:3307:33, 16 August 2025 Analog To Quaternion (hist | edit) [1,029 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoAnalogToQuaternion.png == Summary == Converts four analog inputs (X, Y, Z, and Real) into a single Quaternion value. == Description == The Analog To Quaternion component combines four analog values into a quaternion structure, where X, Y, and Z form the imaginary part, and Real represents the real part. This allows quaternion-based processing or transmission from simple analog sources. <b>Diagram:</b> Image:TArduinoAnalogToQuaternion.Preview.png...")
- 07:3007:30, 16 August 2025 Quaternion To Analog (hist | edit) [1,072 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoQuaternionToAnalog.png == Summary == Converts a Quaternion into its individual analog components: X, Y, Z (Imaginary parts), and Real. == Description == The Quaternion To Analog component extracts the individual numeric values of a Quaternion and outputs them as separate analog signals. This allows integration of quaternion-based orientation or rotation data with analog processing blocks, displays, or further numeric computation. <b>Diagram:</b> I...")
- 07:2607:26, 16 August 2025 Compare Quaternion Value (hist | edit) [1,365 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoQuaternionCompare.png == Summary == Compares an incoming Quaternion against a predefined Quaternion value and outputs the result as a boolean. == Description == The Compare Quaternion Value component allows you to compare an input Quaternion with a reference Quaternion specified in the Value property. Depending on the selected Compare Type, the component outputs True or False. This is useful for detecting when a Quaternion matches or differs from a s...")
- 07:2207:22, 16 August 2025 Quaternion Mux(Multi channel Switch) (hist | edit) [1,180 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoQuaternionMux.png == Summary == Selects and outputs one Quaternion input from multiple channels based on the selection index. == Description == The Quaternion Mux component works as a multi-channel switch for Quaternion values. It allows you to provide multiple Quaternion inputs and dynamically select which one to route to the output by setting the Select pin. This is useful when switching between different Quaternion sources, such as sensor readings,...")
- 07:1907:19, 16 August 2025 Quaternion Array (hist | edit) [1,107 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoQuaternionArray.png == Summary == Stores and outputs a Quaternion value from an indexed array. == Description == The Quaternion Array component maintains an array of Quaternion values. Each element in the array can be predefined through its Elements property. At runtime, the component outputs the Quaternion at the specified index. The Clock input triggers updating of the output with the Quaternion value at the current Index. <b>Diagram:</b> Image:...")
- 07:1507:15, 16 August 2025 Quaternion Snapshot (hist | edit) [1,096 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoQuaternionSnapshot.png == Summary == Captures and holds a Quaternion value when triggered by the Snapshot input. == Description == The Quaternion Snapshot component stores the current Quaternion from its In pin whenever the Snapshot pin is triggered. The stored value is held and continuously output until the next snapshot event occurs. This is useful for “freezing” an orientation/rotation state at a specific moment in time for further processing o...")
- 07:1207:12, 16 August 2025 Quaternion On/Off Switch (hist | edit) [1,203 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoQuaternionSwitch.png == Summary == {{:Summaries:Summary Quaternion On/Off Switch}} == Description == The Quaternion On/Off Switch component enables or disables the transfer of a Quaternion input value to the output. This allows selective control over when orientation/rotation data is passed forward in your project. <b>Diagram:</b> Image:TArduinoQuaternionSwitch.Preview.png == Categories == *Image:TArduinoMathCategory.png Category Quaterni...")
- 07:0907:09, 16 August 2025 Quaternion Multi Source (hist | edit) [868 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoQuaternionMultiSource.png == Summary == {{:Summaries:Summary Quaternion Multi Source}} == Description == The Quaternion Multi Source component provides multiple Quaternion outputs from a single input source. This allows the same orientation/rotation value to be distributed to multiple modules or subsystems simultaneously. <b>Diagram:</b> Image:TArduinoQuaternionMultiSource.Preview.png == Categories == *Image:TArduinoMathCategory.png Categ...")
- 07:0707:07, 16 August 2025 Quaternion Toggle Demux (hist | edit) [1,130 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoQuaternionToggleDemux.png == Summary == {{:Summaries:Summary Quaternion Toggle Demux}} == Description == The Quaternion Toggle Demux component routes a Quaternion input to one of two outputs (True or False) depending on the state of the Select pin. This is useful when you need to direct orientation/rotation values into different processing paths or modules based on a condition. <b>Diagram:</b> Image:TArduinoQuaternionToggleDemux.Preview.png ==...")
- 07:0407:04, 16 August 2025 Quaternion Toggle Switch (hist | edit) [1,175 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoQuaternionToggleSwitch.png == Summary == {{:Summaries:Summary Quaternion Toggle Switch}} == Description == The Quaternion Toggle Switch component selects between two Quaternion inputs (True and False) based on the Select pin state. It is useful when you need to dynamically switch between two orientation/rotation values in 3D applications, robotics, or graphics. <b>Diagram:</b> Image:TArduinoQuaternionToggleSwitch.Preview.png == Categories == *[...")
- 07:0007:00, 16 August 2025 Quaternion Value (hist | edit) [1,514 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoQuaternionValue.png == Summary == Generates a configurable Quaternion value for use in 3D orientation, rotation, or spatial calculations. == Description == The Quaternion Value component outputs a quaternion defined by its real and imaginary (X, Y, Z) parts. Values can be provided through Elements, allowing flexible update modes: Set Value elements update the quaternion when a Clock input is triggered. Set Value State elements update the quaternion...")
- 06:3706:37, 16 August 2025 Touch Data For ID (hist | edit) [1,242 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoTouchDataForID.png == Summary == Extracts touch data for a specific touch ID from a multi-touch input. == Description == The Touch Data For ID component filters a multi-touch input and outputs the data related only to the configured ID. This allows applications to reliably track a single finger or touch point across frames, even when multiple touches are present. Typical use cases include gesture recognition, tracking a primary finger for dragging, o...")
- 06:3406:34, 16 August 2025 Parse/Split Touch (hist | edit) [1,426 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoParseTouch.png == Summary == Splits a touch input into its individual components, such as coordinates, press state, and metadata. == Description == The Parse/Split Touch component takes a touch input and extracts its details into separate outputs for easier processing. This includes the X/Y position, whether the touch is pressed, its size, index, and unique identifier (ID). It is useful for handling raw multi-touch input from touch controllers (e.g.,...")
- 06:2906:29, 16 August 2025 Goodix Display Touch GT911 (hist | edit) [1,633 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoGT911.png == Summary == Provides an interface to the Goodix GT911 capacitive touch controller, commonly used in displays with multi-touch support. == Description == The GT911 Touch Controller component communicates with the Goodix GT911 chip over I²C, enabling detection of multiple simultaneous touch points on a touchscreen display. It supports configurable orientation, mirroring, and screen dimensions, allowing flexible adaptation to different disp...")
- 06:2106:21, 16 August 2025 Touch On/Off Switch (hist | edit) [1,146 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoTouchSwitch.png == Summary == {{:Summaries:Summary Touch On/Off Switch}} == Description == The Touch On/Off Switch component allows you to Enable or Disable the signal from the Touch input to be sent to the output. When disabled, no signal is forwarded. When enabled, the input touch signal is mirrored to the output, with optional control behavior via additional properties. <b>Diagram:</b> Image:TArduinoTouchSwitch.Preview.png == Categories ==...")
- 06:1706:17, 16 August 2025 Touch Toggle Switch (hist | edit) [959 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoTouchToggleSwitch.png == Summary == {{:Summaries:Summary Touch Toggle Switch}} == Description == Use this component to select between two Touch inputs. The active input is chosen based on the value of the Select pin. If Select is True, the True input is routed to the output. If Select is False, the False input is routed to the output. <b>Diagram:</b> Image:TArduinoTouchToggleSwitch.Preview.png == Categories == *Image:TArduinoTouchCategory.p...")
- 06:1306:13, 16 August 2025 Touch Snapshot (hist | edit) [1,020 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoTouchSnapshot.png == Summary == Captures and holds a touch value on a snapshot trigger. == Description == The Touch Snapshot component stores the touch state present at its In pin when the Snapshot pin is triggered. The stored value is continuously held and output until another snapshot event occurs. This is useful for freezing the touch state at a specific moment for later use or processing. <b>Diagram:</b> Image:TArduinoTouchSnapshot.Preview.p...")