New pages

Jump to navigation Jump to search
New pages
Hide registered users | Hide bots | Show redirects
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)

13 November 2025

  • 08:5508:55, 13 November 2025 NXP PCA9557 GPIO(I2C) (hist | edit) [3,088 bytes] Visuino (talk | contribs) (Created page with "Image:NPXPCA9557GPIOComponent.png == Summary == The NXP PCA9557 is a 8-bit GPIO expander controlled via the I2C bus. It provides eight bidirectional I/O pins that can be individually configured as inputs or open-drain outputs. == Description == The NXP PCA9557 GPIO (I2C) component interfaces with the PCA9557 chip, adding 8 configurable GPIO channels to your system over an I2C connection. Each channel can be independently set as an input to read a logic level or as...")
  • 08:5008:50, 13 November 2025 NXP PCA9556 GPIO(I2C) (hist | edit) [3,088 bytes] Visuino (talk | contribs) (Created page with "Image:NPXPCA9556GPIOComponent.png == Summary == The NXP PCA9556 is a 8-bit GPIO expander controlled via the I2C bus. It provides eight bidirectional I/O pins that can be individually configured as inputs or open-drain outputs. == Description == The NXP PCA9556 GPIO (I2C) component interfaces with the PCA9556 chip, adding 8 configurable GPIO channels to your system over an I2C connection. Each channel can be independently set as an input to read a logic level or as...")
  • 08:2108:21, 13 November 2025 Step/Iterate Integer Array Items (hist | edit) [1,469 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoStepIterateIntegerArrayItems.png == Summary == Steps through or iterates each item in an integer array one by one. == Description == The Step/Iterate Integer Array Items component allows sequential access to each element of an incoming integer array. Each trigger on the input advances to the next item, outputting it through the Out pin. When the end of the array is reached, the Empty pin triggers, and iteration can restart on the next input. This com...")
  • 08:1408:14, 13 November 2025 Repeat Integer Array (hist | edit) [1,157 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoRepeatIntegerArray.png == Summary == Repeats an incoming integer array a specified number of times. == Description == The Repeat Integer Array component takes an incoming integer array from the In pin and outputs it repeatedly based on the Count property. This is useful for generating repeated patterns, duplicating data sequences, or extending array outputs for further processing. If Enabled is set to False, the component will not process or output a...")
  • 08:1108:11, 13 November 2025 Remember Integer Array (hist | edit) [1,487 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoRememberIntegerArray.png == Summary == Stores and recalls an integer array value on command. == Description == The Remember Integer Array component allows storing an integer array received at the In pin and later recalling it when needed. When a clock signal is received at the Remember pin, the current input array is stored in memory. When a clock signal is received at the Recall pin, the stored array is output through the Out pin. You can also defin...")
  • 08:0608:06, 13 November 2025 Measure Integer Array Length (hist | edit) [1,099 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoMeasureIntegerArrayLength.png == Summary == Measures and outputs the number of elements in an integer array. == Description == The Measure Integer Array Length component calculates the total number of elements in the incoming integer array connected to the In pin. It outputs this count as an integer value through the Out pin. This component is useful when dynamically processing arrays of varying sizes, allowing other components to adapt based on the...")
  • 08:0308:03, 13 November 2025 Integer To Integer Array (hist | edit) [1,443 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoIntegerToIntegerArray.png == Summary == Combines multiple integer inputs into a single integer array output. == Description == The Integer To Integer Array component collects several individual integer inputs and merges them into one output array. You can configure the number of Input Pins through the Input Pins property — each representing an element of the resulting array. When a signal is received on the Clock pin, the component reads the curren...")
  • 08:0008:00, 13 November 2025 Integer Array Value (hist | edit) [2,013 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoIntegerArrayValue.png == Summary == Outputs predefined integer array values when triggered by clock or boolean inputs, depending on configured elements. == Description == The Integer Array Value component generates and outputs integer arrays defined through configurable elements. Click the Elements property’s three dots button to open the Elements Editor, where you can add Set Value or Set Value State elements. Set Value elements add a Clock input...")
  • 07:5307:53, 13 November 2025 Integer Array Toggle Switch (hist | edit) [1,366 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoIntegerArrayToggleSwitch.png == Summary == Selects between two integer array inputs based on a boolean control signal. == Description == The Integer Array Toggle Switch component switches the output between the True and False integer array inputs according to the boolean 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. The Initial Select Value property defines which...")
  • 07:5007:50, 13 November 2025 Integer Array Toggle Demux (hist | edit) [1,271 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoIntegerArrayToggleDemux.png == Summary == Routes an incoming integer array to one of two outputs based on a boolean select signal. == Description == The Integer Array Toggle Demux component takes an integer array at the In pin and directs it to either the True or False output, depending on the boolean state of the Select pin. When Select is True, the array is sent to the True output. When False, it is sent to the False output. The Initial Select Valu...")
  • 07:4407:44, 13 November 2025 Integer Array Snapshot (hist | edit) [1,146 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoIntegerArraySnapshot.png == Summary == Captures and holds an integer array value when triggered by a snapshot signal. == Description == The **Integer Array Snapshot** component stores the current integer array received at the **In** pin whenever a clock signal is received at the **Snapshot** pin. The stored array value remains output continuously at the **Out** pin until the next snapshot event occurs. This is useful for capturing array states at...")
  • 07:3107:31, 13 November 2025 Integer Array Replace Items At Index (hist | edit) [1,290 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoIntegerArrayReplaceItemsAtIndex.png == Summary == Replaces specific items in an integer array at a defined index position. == Description == The **Integer Array Replace Items At Index** component replaces one or more items in the input integer array starting at the specified **Index** with new values defined in the **Value Elements** list. This allows precise editing or updating of array contents without modifying the rest of the data. <b>Diagram:<...")
  • 07:2707:27, 13 November 2025 Integer Array Replace (hist | edit) [1,339 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoIntegerArrayReplace.png == Summary == Replaces specified integer values within an integer array with new values. == Description == The **Integer Array Replace** component searches the input integer array for values defined in the **From Value Elements** list and replaces them with corresponding values from the **To Value Elements** list. This is useful for remapping array contents, correcting data, or transforming integer sequences dynamically. <b>...")
  • 07:0707:07, 13 November 2025 Integer Array On/Off Switch (hist | edit) [1,387 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoIntegerArraySwitch.png == Summary == Enables or disables the transmission of an integer array signal to the output. == Description == The **Integer Array On/Off Switch** component allows control over whether the input integer array signal is passed through to the output. When the **Enable** pin is set to `true`, the input is transmitted to the **Out** pin; when `false`, output is stopped. Optional properties such as **Ignore Same** and **Send On E...")
  • 07:0307:03, 13 November 2025 Integer Array Mux(Multi channel Switch) (hist | edit) [1,242 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoIntegerArrayMux.png == Summary == Selects one of multiple integer array inputs based on the selected channel. == Description == The **Integer Array Mux (Multi Channel Switch)** component allows you to choose one of several integer array input channels and route it to a single output. The selected input is determined by the value received at the **Select** pin. This is useful for switching between multiple integer array sources dynamically. <b>Dia...")
  • 06:5806:58, 13 November 2025 Integer Array Multi Source (hist | edit) [1,046 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoIntegerArrayMultiSource.png == Summary == Duplicates a single integer array input to multiple outputs. == Description == The **Integer Array Multi Source** component allows you to route a single integer array input to multiple outputs. You can configure the number of output pins using the **Output Pins** property. Each output provides the same integer array data, enabling parallel processing or distribution of identical data streams. <b>Diagram:<...")
  • 06:5506:55, 13 November 2025 Integer Array Insert Items (hist | edit) [1,171 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoIntegerArrayInsertItems.png == Summary == Inserts one or more integer values into a specified position within an integer array. == Description == The **Integer Array Insert Items** component allows you to insert new integer values into an existing integer array at a defined **Index** position. This is useful for dynamically modifying arrays by adding elements at specific points in the data stream. <b>Diagram:</b> Image:TArduinoIntegerArrayInsert...")
  • 06:4906:49, 13 November 2025 Integer Array Demux(Multiple Output channel Switch) (hist | edit) [1,365 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoIntegerArrayDemux.png == Summary == Routes an integer array input to one of multiple output channels based on the selected index. == Description == The **Integer Array Demux (Multiple Output Channel Switch)** component directs the incoming integer array signal to one of several output pins, as determined by the value at the **Select** input. Only the selected output pin will carry the array data, while the others remain inactive. This is useful fo...")
  • 06:3906:39, 13 November 2025 Integer Array Delete Items (hist | edit) [1,089 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoIntegerArrayDeleteItems.png == Summary == Removes one or more items from an integer array starting at a specified index. == Description == The **Integer Array Delete Items** component deletes a specified number of elements from the input integer array, beginning at the defined **Index** position. The modified array is then sent to the **Out** pin. This component is useful for dynamically adjusting the size or contents of integer arrays during runt...")
  • 05:5905:59, 13 November 2025 Integer Array Change Only (hist | edit) [1,006 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoIntegerArrayChangeOnly.png == Summary == Outputs the integer array only when its value changes. == Description == The **Integer Array Change Only** component monitors changes in the incoming integer array signal. It outputs the array through the **Out** pin only when the input array differs from its previous state. This helps reduce redundant updates and processing by only propagating meaningful changes in array data. <b>Diagram:</b> Image:TAr...")
  • 05:3405:34, 13 November 2025 Get Integer Array Item At Index (hist | edit) [1,475 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoIntegerArrayGetItemAtIndex.png == Summary == Retrieves an integer value from an array at the specified index. == Description == The **Get Integer Array Item At Index** component outputs the integer value located at the specified **Index** position in the incoming integer array. If the index is valid, the corresponding array element is sent to the **Out** pin. If the index is outside the array range, the **Out of Range** clock pin is triggered. T...")

12 November 2025

17 September 2025

(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)