New Microsoft PowerPoint Presentation
New Microsoft PowerPoint Presentation
• Introduction
• Working of Arduino
• Applications
• Inputs and Outputs
INTRODUCTION:
• Hardware: Arduino boards are physical, programmable circuit boards (often referred to
as microcontrollers). These boards can read various inputs, such as light from a sensor,
a button press, or even a Twitter message. They then process this input and generate
an output, which could be activating a motor, turning on an LED, or publishing
something online.
SOFTWARE:
• Arduino boards have digital pins that can be configured as either inputs or outputs.
• When configured as inputs, these pins default to a high-impedance state. They
make extremely small demands on the circuit they sample, which makes them
useful for tasks like capacitive touch sensing or reading analog sensors.
• You can also use pullup resistors with input pins to steer them to a known state
when no input is present.
• Additionally, there are 20K pullup resistors built into the Atmega chip that can be
accessed from software by setting the pinMode as INPUT_PULLUP. These provide a
known state for the input pins.
NUMBER OF INPUTS AND OUTPUTS: