Arduino Motors and Sensors Chapter Quiz

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to Lesson

Podcast

Play an AI-generated podcast conversation about this lesson
Download our mobile app to listen on the go
Get App

Questions and Answers

What is the name of the technique used for applying an analog-like signal to a load that has a relatively slow response?

Pulse Width Modulation (PWM)

What is the name of the function in Arduino that is used to write an analog voltage value to an output?

analogWrite

What is the name of a commonly available device that can amplify a current?

Transistor

What are the two types of motors covered in this chapter?

<p>Direct current (DC) motors and servo motors</p> Signup and view all the answers

Which of the following are advantages of using a gearhead DC motor?

<p>They have relatively low cost. (A), They are commonly used for robotics projects. (B), They have a high torque output. (C)</p> Signup and view all the answers

Standard hobby servo motors allow for 360 degree rotation.

<p>False (B)</p> Signup and view all the answers

The Arduino board can control a DC motor directly using its digital pins.

<p>False (B)</p> Signup and view all the answers

Analog input pins on the Arduino board can be used as digital input/output pins if not used for analog input.

<p>True (A)</p> Signup and view all the answers

A separate power supply is recommended for motors, even while powering the Arduino board.

<p>True (A)</p> Signup and view all the answers

What types of sensors are used to detect the presence of an obstacle using ultrasound waves?

<p>Ultrasonic sensors</p> Signup and view all the answers

What type of sensor is used to detect motion by sensing infrared radiation?

<p>Passive Infrared (PIR) sensor</p> Signup and view all the answers

What is the name of the IR line sensor that is provided in the MEC101 Mechatronics kit?

<p>Sparkfun QRE1113</p> Signup and view all the answers

What is the name of the sensor that senses temperature by producing an analog signal?

<p>TMP36 sensor</p> Signup and view all the answers

What is the name of the device that changes the direction of power when activated?

<p>Limit switch</p> Signup and view all the answers

What type of device is used to change the resistance by changing the effective length of a resistive element?

<p>Potentiometer</p> Signup and view all the answers

To control the speed of the motor for the H-bridge, you need to connect the motor logic pins to the Arduino's PWM pins.

<p>False (B)</p> Signup and view all the answers

Standard hobby servo motors have an integrated H-bridge circuit.

<p>True (A)</p> Signup and view all the answers

Analog line sensors are able to distinguish between different surfaces based on their reflectiveness.

<p>True (A)</p> Signup and view all the answers

How does a PIR sensor detect motion?

<p>By detecting changes in infrared radiation.</p> Signup and view all the answers

Flashcards

Switch

A component used in electronic circuits to allow or block the flow of electrical current.

LED

A type of electrical component that emits light when an electric current flows through it.

Resistor

A small electronic component that can be used to control the flow of electricity and usually has a fixed value.

Capacitor

A type of electronic component that allows a small amount of electricity to leak through it.

Signup and view all the flashcards

Transistor

A type of electronic component that can amplify and modify electronic signals.

Signup and view all the flashcards

Diode

A type of electronic circuit that allows the flow of current in only one direction.

Signup and view all the flashcards

Analog-to-Digital Conversion (ADC)

The process of converting an analog signal into a digital signal.

Signup and view all the flashcards

Digital-to-Analog Conversion (DAC)

The process of converting a digital signal into an analog signal.

Signup and view all the flashcards

Momentary Switch

The phenomenon where a switch is pressed and held down, causing the circuit to be closed.

Signup and view all the flashcards

Open Circuit

A circuit where the current flow is interrupted, preventing electricity from flowing.

Signup and view all the flashcards

Closed Circuit

A circuit where there is a continuous path for electricity to flow through.

Signup and view all the flashcards

Short Circuit

The condition where two points in a circuit are directly connected, allowing a large amount of current to flow and potentially damaging components.

Signup and view all the flashcards

Output Pin

The state where a pin on a microcontroller is configured to output a value.

Signup and view all the flashcards

Input Pin

The state where a pin on a microcontroller is configured to receive a value.

Signup and view all the flashcards

digitalWrite()

The process of setting the state of a pin to either HIGH or LOW.

Signup and view all the flashcards

digitalRead()

This function reads the state of a digital pin and returns a value indicating whether the pin is HIGH or LOW.

Signup and view all the flashcards

HIGH

A value representing a logical 1 or true state.

Signup and view all the flashcards

LOW

A value representing a logical 0 or false state.

Signup and view all the flashcards

Pulse Width Modulation (PWM)

The process of controlling the brightness of an LED by adjusting the amount of time the LED is turned on and off.

Signup and view all the flashcards

Analog Output

A feature of some microcontroller pins that allows for the controlled output of a varying voltage or current.

Signup and view all the flashcards

Analog Input

A feature of some microcontroller pins that allows for the reading of a varying voltage or current.

Signup and view all the flashcards

Digital I/O Pin

A microcontroller pin designed for both digital input and output functions.

Signup and view all the flashcards

DC Motor

A type of motor that converts electrical energy directly into mechanical energy.

Signup and view all the flashcards

Continuous Rotation Servo Motor

A type of motor that rotates continuously in one direction when energized.

Signup and view all the flashcards

Finite Rotation Servo Motor

A type of motor that rotates to a specific angle and holds its position.

Signup and view all the flashcards

DC Gearhead Motor

A type of motor that uses gears to reduce speed and increase torque.

Signup and view all the flashcards

H-bridge

A type of electronic circuit that allows the control of a DC motor's direction and speed.

Signup and view all the flashcards

Photocell

An electrical device that detects changes in light levels.

Signup and view all the flashcards

Thermistor

An electrical device that changes resistance based on temperature.

Signup and view all the flashcards

Limit Switch

A mechanical switch that is activated when a specific object or force presses on it.

Signup and view all the flashcards

Ultrasonic Sensor

A sensor that measures the distance to an object using sound waves.

Signup and view all the flashcards

PIR Motion Sensor

A sensor that detects motion by sensing changes in infrared radiation.

Signup and view all the flashcards

Infrared (IR) Line Sensor

A sensor that detects the presence or absence of an object by measuring reflected infrared light.

Signup and view all the flashcards

Potentiometer

A variable resistor that allows for the manual adjustment of an electrical resistance.

Signup and view all the flashcards

TMP36 Sensor

A temperature sensor that provides an analog voltage output proportional to the temperature.

Signup and view all the flashcards

Study Notes

Module 6: Sensing and Actuation with Arduino

  • 6.1 Digital and Analog Write and Read with Arduino:

    • Includes digital input to control an LED, analog output to control brightness of an LED (PWM), analog input and output to control LED brightness, and using analog input pins as digital I/O pins.
    • Uses a resistor in series with a switch for controlling an LED.
    • Arduino Uno can read input from switch (HIGH voltage when pressed, LOW when open).
    • LED brightness can be controlled with PWM (Pulse-Width Modulation).
  • 6.2 DC and Servo Motors:

    • Classifies motors as DC, Hobby Servo, Standard DC Gearhead, Stepper, and AC.
    • Standard DC/Toy Motors:
      • Employ a permanent magnet and commutator.
      • Typically rated from 1.5V to 12V and 1000-20000 RPM.
      • Often inexpensive.
      • Not ideal for high torque applications
    • DC Gearhead Motors:
      • Standard DC toy motors with reduction gears.
      • Significantly lower speed but higher torque.
      • Good for Moderate torque applications.
    • Standard Hobby Servo Motors:
      • DC gearhead motors are precise positioning.
      • Limited rotation (typically 0-180 degrees).
    • Explains common hobby servo specifications.
  • 6.3 DC and Servo Motor Control using Arduino:

    • Controlling DC motors:

      • Requires an H-bridge IC (e.g., L293NE or SN754410).
      • This device allows for controlling the motor's directions and speeds.
    • Controlling Finite Rotation Servo Motors:

    • Uses Arduino Servo library for easier control.

    • Controlling Continuous Rotation Servo Motors:

    • A similar method to standard servos, but continuous rotation servos have no angle limit.

    • Uses direct control of the motor speed.

  • 6.4 Interfacing Sensors with Arduino:

    • Photocells and Thermistors:
    • Photocells change resistance with light intensity (lower resistance with more light).
    • Thermistors change resistance with temperature (NTC thermistors decrease resistance with increasing temperature).
    • Use a voltage divider circuit to read the sensor values.
    • Practical example code is provided to interface and use photocells/thermistors with Arduino.
    • Limit Switches:
    • Mechanical switches that change connections based on physical force.
    • Typical use cases are to detect when something has reached a limit or to halt a movement
    • Code is provided for determining the position of the switch and turning an LED on or off.
    • Ultrasonic Sensor:
    • Uses time-of-flight to measure distances from an object.
    • Has a trigger and an echo input pin.
    • Common example sensor is the HC-SR04.
    • PIR Motion Sensor:
    • Detects infrared (IR) radiation changes from moving objects.
    • Code example is provided when the sensor detects movement.
    • Infrared (IR) Line Sensors:
    • Detect lines, usually black lines.
  • Potentiometer:

    • Measures rotational position (or angular position) that's linearly proportional to voltage.
    • Commonly connect to an analog input on the Arduino.
  • TMP36 Sensor:

  • Senses temperature, producing an analog signal directly proportional to the temperature degrees Celsius.

Studying That Suits You

Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

Quiz Team

Related Documents

More Like This

Arduino Sensors Overview
24 questions

Arduino Sensors Overview

SubsidizedRutherfordium avatar
SubsidizedRutherfordium
Arduino UNO Sensors Introduction
10 questions
Arduino DHT11 and Soil Moisture Sensors Quiz
25 questions
Arduino Sensors and Modules
17 questions

Arduino Sensors and Modules

ImpartialNewton4802 avatar
ImpartialNewton4802
Use Quizgecko on...
Browser
Browser