New pages
Jump to navigation
Jump to search
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
- 08:5108:51, 12 November 2025 Find Last Integer Array Position (hist | edit) [1,483 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoIntegerArrayFindLastPosition.png == Summary == Finds the last position of a specified integer value within an integer array input. == Description == The **Find Last Integer Array Position** component scans the incoming integer array from the **In** pin and searches for the last occurrence of the specified **Value Elements**. If a match is found, its index position is sent to the **Out** pin. If no match is found, the **Missing** clock output is tr...")
- 08:4808:48, 12 November 2025 Find Integer Array Position (hist | edit) [1,451 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoIntegerArrayFindPosition.png == Summary == Finds the first position of a specified integer value within an integer array input. == Description == The **Find Integer Array Position** component scans the incoming integer array from the **In** pin and searches for the first occurrence of the specified **Value Elements**. If a match is found, its index position is sent to the **Out** pin. If no match is found, the **Missing** clock output is triggered...")
- 08:4308:43, 12 November 2025 Find All Unsigned Array Positions (hist | edit) [1,423 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoUnsignedArrayFindAllPositions.png == Summary == Finds all positions of a specified unsigned integer pattern within an unsigned array input. == Description == The **Find All Unsigned Array Positions** component scans the incoming unsigned array from the **In** pin and identifies all index positions where the data matches the configured **Value Elements**. All matching positions are returned as an **Unsigned Array** on the **Out** pin. This componen...")
- 08:3808:38, 12 November 2025 Find All Integer Array Positions (hist | edit) [1,408 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoIntegerArrayFindAllPositions.png == Summary == Finds all positions of a specified integer pattern within an integer array input. == Description == The **Find All Integer Array Positions** component scans the incoming integer array at the **In** pin and locates all index positions where the data matches the configured **Value Elements**. All matching positions are returned as an **Unsigned Array** on the **Out** pin. This component is useful for de...")
- 08:2808:28, 12 November 2025 Find All Complex Array Positions (hist | edit) [1,443 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoComplexArrayFindAllPositions.png == Summary == Finds all positions of a specified complex pattern within a complex array input. == Description == The **Find All Complex Array Positions** component scans the input complex array received at the **In** pin and identifies all index positions where the data matches the configured **Value Elements**. Each match position is output as an unsigned integer in the resulting **Unsigned Array**. This component...")
- 08:1308:13, 12 November 2025 Find All Binary Positions (hist | edit) [1,321 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoBinaryFindAllPositions.png == Summary == Finds all positions of a specified binary pattern within an input binary stream. == Description == The **Find All Binary Positions** component scans the incoming binary data on its **In** pin and locates all positions (indexes) where the data matches the configured **Value** pattern. The positions of all matches are output as an **Unsigned Array**. This component is useful for pattern matching, data analysi...")
- 08:0308:03, 12 November 2025 Find All Analog Array Positions (hist | edit) [1,337 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoAnalogArrayFindAllPositions.png == Summary == Finds all positions (indexes) of matching analog values within an input array. == Description == The **Find All Analog Array Positions** component searches through the incoming analog array on its **In** pin and identifies all indexes where the array elements match any of the configured **Value Elements**. The resulting list of indexes is output as an **Unsigned Array**. This component is useful for lo...")
17 September 2025
- 07:4107:41, 17 September 2025 General Vision Neuro Shield (hist | edit) [4,275 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoGeneralVisionNeuroShield.png == Summary == The General Vision Neuro Shield provides neural network processing capabilities with integrated 6-axis IMU, temperature sensing, and micro SD storage for intelligent pattern recognition applications. == Description == This advanced shield combines neural network processing with motion sensing and data storage capabilities. It features a 6-axis IMU (accelerometer and gyroscope) for motion detection, temperatur...")
- 07:3407:34, 17 September 2025 Ethernet Shield SesedStudio V2 (hist | edit) [3,092 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoEthernetShieldSeeedStudioV2.png == Summary == The Ethernet Shield SeeedStudio V2 provides wired network connectivity with configurable IP addressing, DNS settings, MAC address configuration, and socket operations for reliable network communication. == Description == This Ethernet shield enables robust wired network connectivity for Arduino projects, supporting both static IP configuration and DHCP for automatic network addressing. It features comprehe...")
- 07:3107:31, 17 September 2025 Ethernet Shield V2 (hist | edit) [3,144 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoEthernetShieldV2.png == Summary == The Ethernet Shield V2 provides wired network connectivity with configurable IP addressing, DNS settings, and socket operations for reliable network communication. == Description == This Ethernet shield enables wired network connectivity for Arduino projects, supporting both static IP configuration and DHCP for automatic network addressing. It features comprehensive network settings including configurable IP addresse...")
- 07:2407:24, 17 September 2025 Adafruit LCD 5 Button Keypad I2C Shield (hist | edit) [3,028 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoAdafruitLCD5ButtonKeypadI2CShield.png == Summary == The Adafruit LCD 5 Button Keypad I2C Shield combines a 16x2 character LCD display with a 5-button keypad interface, featuring I2C communication and customizable display elements. == Description == This shield provides a liquid crystal display with 16 characters by 2 lines and a integrated 5-button keypad for user interaction. The display supports auto-scrolling, backlight control, cursor display, and...")
- 07:1607:16, 17 September 2025 Adafruit AirLift WiFi (hist | edit) [3,557 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoAdafruitAirLiftWiFi.png == Summary == The Adafruit AirLift WiFi co-processor provides wireless connectivity with both station and access point modes, temperature monitoring, and network configuration capabilities. == Description == This WiFi co-processor module enables wireless connectivity for Arduino projects, supporting both station mode (connecting to existing networks) and access point mode (creating its own network). It features chip temperature...")
- 07:1207:12, 17 September 2025 Sparkfun CANBus, Micro SD and Joystick Shield (hist | edit) [5,057 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoSparkfunCANBusMicroSDAndJoystickShield.png == Summary == The Sparkfun CANBus, Micro SD and Joystick Shield combines Controller Area Network communication, data storage, and user input capabilities with LED status indicators in a comprehensive interface shield. == Description == This multifunctional shield integrates CAN bus communication for automotive/industrial applications, micro SD card storage for data logging, a joystick for user input, and stat...")
- 07:0907:09, 17 September 2025 Seeed Studio CANBus and Micro SD Shield V2.0 (hist | edit) [4,279 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoSeeedStudioCANBusAndMicroSDShieldV2.0.png == Summary == The Seeed Studio CANBus and Micro SD Shield V2.0 combines Controller Area Network (CAN) bus communication with micro SD card storage, featuring Grove I2C and serial interfaces for comprehensive data logging applications. == Description == This shield integrates CAN bus communication capabilities with micro SD card storage, supporting both real-time data exchange and data logging. The CAN bus inte...")
- 07:0407:04, 17 September 2025 Seeed Studio CANBus Shield V1.2 (hist | edit) [3,305 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoSeeedStudioCANBusShieldV1.2.png == Summary == The Seeed Studio CANBus Shield V1.2 provides Controller Area Network (CAN) bus communication capabilities with Grove I2C and serial interfaces for automotive and industrial applications. == Description == This CAN bus shield supports standard CAN 2.0A and 2.0B protocols with configurable bus speeds up to 1Mbps. It features a dedicated chip select pin, configurable clock frequency, and supports various oper...")
- 07:0107:01, 17 September 2025 CANBus Shield (hist | edit) [3,235 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoCANBusShield.png == Summary == The CANBus Shield provides Controller Area Network (CAN) bus communication capabilities for automotive and industrial applications, featuring configurable bus speeds and message handling. == Description == This shield enables CAN bus communication, supporting standard CAN 2.0A and 2.0B protocols with configurable bus speeds up to 1Mbps. It includes features for message transmission and reception, priority settings, timeo...")
- 06:5606:56, 17 September 2025 Keyestudio CANBus and Micro SD Shield (hist | edit) [3,633 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoKeyestudioCANBusAndMicroSDShield.png == Summary == The Keyestudio CANBus and Micro SD Shield provides Controller Area Network (CAN) bus communication and micro SD card storage capabilities for automotive and industrial data logging applications. == Description == This shield combines CAN bus interface functionality with micro SD card storage, enabling both real-time communication with automotive/industrial systems and data logging capabilities. The CA...")
- 06:5206:52, 17 September 2025 Adafruit Data Logger Shield (RTC and SD) (hist | edit) [5,453 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoAdafruitDataLoggerShield.png == Summary == The Adafruit Data Logger Shield combines a Real Time Clock (RTC) and SD card interface for time-stamped data logging applications, featuring comprehensive clock functionality and data storage capabilities. == Description == This data logging shield integrates a precision Real Time Clock with alarm functions, timer capabilities, and power management features, combined with an SD card interface for storing time...")
- 05:5905:59, 17 September 2025 Kuman Robot SM11 Shield (Remapped) (hist | edit) [5,049 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoKumanRobotSM11Shield.png == Summary == The Kuman Robot SM11 Shield is a comprehensive robotics platform featuring infrared remote control, motor drivers, ultrasonic ranging, turn signals, buzzer, and multiple sensor interfaces for autonomous robot applications. == Description == This all-in-one robotics shield integrates multiple functionalities including dual motor control with acceleration/deceleration slopes, infrared remote reception, ultrasonic d...")
- 05:5305:53, 17 September 2025 Sinoning 4 Potentiometers and Servos (hist | edit) [5,244 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoSinoning4PotentiometersAndServos.png == Summary == The Sinoning 4 Potentiometers and Servos Shield provides four independent potentiometer inputs and four servo outputs for analog control and precise motor positioning applications. == Description == This shield offers four analog potentiometer inputs and four servo motor outputs, making it ideal for projects requiring multiple analog controls and precise positional control. Each potentiometer provides...")
- 05:2305:23, 17 September 2025 Elegoo Robot V4 WiFi Shield (hist | edit) [7,797 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoElegooRobotV4WiFiShield.png == Summary == The Elegoo Robot V4 WiFi Shield is an advanced robotics platform featuring 6-axis IMU, motor control, ultrasonic ranging, line tracking, RGB LED, servo control, and infrared remote capabilities with WiFi connectivity for smart robot applications. == Description == This sophisticated robotics shield combines comprehensive sensor integration with WiFi connectivity for building intelligent robots. It features a 6...")
- 05:1205:12, 17 September 2025 Elegoo Robot V2 Shield (hist | edit) [4,972 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoElegooRobotV2Shield.png == Summary == The Elegoo Robot V2 Shield is a comprehensive robotics platform featuring motor control, ultrasonic ranging, line tracking, servo output, and infrared remote capabilities for autonomous robot projects. == Description == This robotics shield provides complete functionality for building autonomous robots with dual H-bridge motor control, ultrasonic distance measurement, three-line tracking sensors, servo motor inter...")
- 05:0205:02, 17 September 2025 Elegoo Robot V2 Shield (Remapped) (hist | edit) [4,909 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoElegooRobotV2Shield.png == Summary == The Elegoo Robot V2 Shield is a versatile robotics platform featuring motor control, ultrasonic ranging, line tracking, servo output, and infrared remote capabilities for autonomous robot projects. == Description == This robotics shield provides comprehensive functionality for building autonomous robots with dual H-bridge motor control, ultrasonic distance measurement, three-line tracking sensors, servo motor inte...")
- 04:4904:49, 17 September 2025 Elegoo Robot V3 Shield (hist | edit) [4,925 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoElegooRobotV3Shield.png == Summary == The Elegoo Robot V3 Shield is a comprehensive robotics platform featuring motor control, ultrasonic ranging, line tracking, servo control, and infrared remote capabilities for autonomous robot applications. == Description == This versatile robotics shield integrates dual motor control with H-bridge drivers, ultrasonic distance measurement, three-line tracking sensors, servo motor output, and infrared remote contro...")
- 04:4304:43, 17 September 2025 Elegoo Balancing Robot Shield (hist | edit) [8,107 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoElegooBalancingRobotShield.png == Summary == The Elegoo Balancing Robot Shield is an advanced robotics platform featuring 6-axis IMU (accelerometer and gyroscope), motor control, ultrasonic ranging, battery monitoring, and RGB LEDs for self-balancing robot applications. == Description == This sophisticated shield is specifically designed for building self-balancing robots. It integrates a 6-axis IMU with configurable accelerometer and gyroscope settin...")
- 04:2804:28, 17 September 2025 Multi Function Shield (hist | edit) [5,010 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoMultiFunctionShield.png == Summary == The Multi Function Shield integrates a 7-segment display, multiple LEDs, buttons, potentiometer, thermometer, buzzer, and infrared remote capabilities into a single educational development platform. == Description == This comprehensive shield provides multiple functionalities including a 4-digit 7-segment display with various display modes, four individual LEDs, three push buttons, analog potentiometer input, temp...")
- 04:2004:20, 17 September 2025 Keyestudio Easy Module Shield (Ks0183) (hist | edit) [4,907 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoKeyestudioEasyModuleShieldKs0183.png == Summary == The Keyestudio Easy Module Shield (Ks0183) is a multi-function development shield featuring multiple sensors, LEDs, buttons, and infrared remote capabilities for educational and prototyping applications. == Description == This versatile shield integrates multiple functional modules including potentiometer input, temperature/humidity sensing, thermometer input, light sensing, RGB LED output, individual...")
- 04:1204:12, 17 September 2025 TSCINBUNY Omni Directional Robot Shield (hist | edit) [5,687 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoTSCINBUNYOmniDirectionalRobotShield.png == Summary == The TSCINBUNY Omni Directional Robot Shield is a comprehensive robotics platform featuring omni-directional motor control, ultrasonic ranging, infrared remote, and line tracking capabilities for advanced robotic applications. == Description == This advanced robotics shield supports omni-directional movement through independently controlled front and rear motors on both left and right sides. It inte...")
- 04:0104:01, 17 September 2025 Arduino 4 Relays Shield (hist | edit) [2,369 bytes] Visuino (talk | contribs) (Created page with "Image:TArduinoArduino4RelaysShield.png == Summary == The Arduino 4 Relays Shield provides four independent relay channels with optical isolation for switching high-power AC/DC loads, designed specifically for Arduino compatibility. == Description == This official Arduino relay shield features four high-quality relays with optical isolation, each capable of switching loads up to 24VDC at 2A or 250VAC at 5A. The shield includes screw terminals for easy wiring, status...")