About 441,000 results
Open links in new tab
  1. Digital I/O - Arduino Docs

    Digital pins are fundamental for interacting with the physical world using your Arduino board. With them, you can: Control outputs, such as turning an LED on and off. Read inputs, like detecting the state of a button. Digital signals have two distinct values:

  2. Digital Pins - Arduino

    Jul 25, 2023 · Discover how digital pins work and how they can be configured. The pins on the Arduino can be configured as either inputs or outputs. This document explains the functioning of the pins in those modes.

  3. How to Use the Arduino’s Digital I/O - Projects - All About Circuits

    Jun 5, 2015 · Learning how to use the inputs and outputs will allow you to use the Arduino to do some really useful things, such as reading switch inputs, lighting indicators, and controlling relay outputs. The digital inputs and outputs (digital I/O) on the Arduino are what allow you to connect the Arduino sensors, actuators, and other ICs.

  4. Arduino digitalread() Digital Input Tutorial - DeepBlue

    This is a comprehensive guide for Arduino digitalRead in which you’ll learn about Arduino digital input pins and how to configure the pinMode and read the digital state of an Arduino digital input pin. We’ll create a couple of Arduino digital input example projects to practice what we’re going to …

  5. Increase Digital Pins of Your Arduino Using the 74HC595 (IOExtension ...

    The IOExtension module is based on four shift registers (74HC595) to provide 16 Digital Inputs and 16 Digital Outputs, you will need only four pins in your Dev Board to control the module, plus the Vcc and the Gnd pins.

  6. Basics of Digital Input and Output with Arduino

    Jan 25, 2025 · At the heart of Arduino programming lies the concept of digital input and output (I/O). This fundamental feature allows Arduino to interact with the physical world by reading digital signals from external devices (input) and controlling components such as …

  7. Arduino Lesson 6. Digital Inputs - Adafruit Learning System

    Dec 5, 2012 · When a switch is pressed, it connects the input pin to GND, so that it is no longer HIGH. Since the input is normally HIGH and only goes LOW, when the button is pressed, the logic is a little up-side-down. We will handle this in the 'loop' function. if (digitalRead (buttonApin) == LOW) digitalWrite (ledPin, HIGH);

  8. Add Digital Inputs And Outputs To Your Arduino - Hackster.io

    The IOExtension module is based on four shift registers (74HC595) to provide 16 Digital Inputs and 16 Digital Outputs, you will need only four pins in your Dev Board to control the module, plus the Vcc and the Gnd pins.

  9. Input devices for Arduino and other MCUs – A complete overview

    Aug 11, 2023 · Here we provide an overview of all the different types of input devices that can be connected to an Arduino or similar microprocessors. We discuss their functional principles and what to watch out for. The terms Inputs and Sensors somewhat overlap.

  10. Digital Read and Write Using the Arduino Uno – 38-3D

    Jan 27, 2025 · This tutorial will explain how to set up digital pins, perform read and write operations, and utilize if statements for logic-based decisions in your projects. Arduino Uno has 14 digital pins (D0-D13). These pins can be configured as: Input: To read signals from sensors or switches. Output: To control LEDs, motors, or other actuators.

  11. Some results have been removed