220-1101Chapter 15 of 123Objective 3.7

Peripherals and Input Devices

This chapter covers peripherals and input devices, a key topic for the CompTIA A+ 220-1101 exam (Objective 3.7). Peripherals are external devices that connect to a computer to provide input, output, or storage. Understanding their interfaces, protocols, and troubleshooting is essential, as roughly 10-15% of exam questions involve peripheral connectivity, configuration, or common issues. We'll explore the most common peripherals—mice, keyboards, touchscreens, scanners, barcode readers, biometric devices, and game controllers—focusing on how they work, how they connect, and what the exam expects you to know.

25 min read
Intermediate
Updated May 31, 2026

The Orchestra Conductor's Interface

Think of a computer system as a symphony orchestra. The CPU is the conductor, the operating system is the sheet music, and the peripherals are the musicians. But the conductor doesn't shout directly to each musician—they use a baton and hand signals. Those signals are like the protocols and interfaces (USB, Bluetooth, etc.) that carry commands from the CPU to the peripheral. For example, when the conductor wants the violins to play louder, they make a specific gesture (analogous to a digital command packet). The musician (peripheral) must interpret that gesture correctly and respond (like a printer printing a page). The conductor can only communicate with one section at a time, but very quickly—this is like the polling or interrupt-driven I/O. If a musician plays a wrong note, the conductor might stop and correct them (error handling). The peripheral's driver is like the musician's training—it knows how to interpret the conductor's signals. Without the driver, the musician would hear noise, not music. Similarly, without a proper driver, the OS can't communicate with the peripheral. The analogy extends to hot-swapping: a musician can leave the stage and be replaced without stopping the concert, just like a USB device can be plugged in or removed while the computer is running.

How It Actually Works

What Are Peripherals and Input Devices?

Peripherals are hardware devices that connect to a computer system to expand its functionality. Input devices specifically allow users to provide data or control signals to the computer. Common examples include keyboards, mice, touchscreens, scanners, barcode readers, biometric devices (fingerprint readers, facial recognition cameras), and game controllers (joysticks, gamepads). The 220-1101 exam tests your knowledge of their interfaces (USB, Bluetooth, PS/2, etc.), configuration, and common troubleshooting steps.

How Input Devices Communicate with the Computer

Input devices typically connect via USB (Universal Serial Bus) or wireless technologies like Bluetooth or RF (radio frequency). When a user interacts with an input device (e.g., presses a key or moves a mouse), the device converts the physical action into an electrical signal. This signal is processed by a microcontroller in the device, which formats the data into a packet according to the interface protocol (e.g., HID - Human Interface Device protocol for USB). The packet is sent to the host controller (e.g., USB host controller), which forwards it to the operating system's driver stack. The driver translates the raw data into a standardized input event (e.g., a key press or mouse movement) and passes it to the application.

For USB devices, the HID protocol defines report descriptors that specify the format of data (e.g., which byte corresponds to which key). The device sends reports at regular intervals (polling rate) or on interrupt. For example, a gaming mouse might have a polling rate of 1000 Hz (1 ms interval), while a standard office mouse might poll at 125 Hz (8 ms interval).

Key Interfaces and Connectors

USB (Universal Serial Bus): The most common interface. Versions include USB 2.0 (480 Mbps), USB 3.0/3.1 Gen 1 (5 Gbps), USB 3.1 Gen 2 (10 Gbps), and USB 3.2/4 (up to 40 Gbps). Connector types: Type-A (standard), Type-B (printers), Type-C (reversible, supports power delivery and alternate modes like DisplayPort). The exam expects you to know maximum cable lengths: USB 2.0 up to 5 meters, USB 3.0 up to 3 meters (unless using active cables).

PS/2: A 6-pin mini-DIN connector used for keyboards and mice. Color-coded: purple for keyboard, green for mouse. Not hot-swappable—plugging/unplugging while powered can damage the port or motherboard. Rare on modern systems but may appear on legacy devices.

Bluetooth: Wireless standard for short-range communication (up to 10 meters, Class 2). Versions: 4.0 (Low Energy), 5.0 (higher speed, longer range). Pairing process: device discovery, authentication (PIN or numeric comparison), and profile establishment (e.g., HID profile for keyboards/mice).

RF (Radio Frequency): Wireless devices using proprietary dongles (e.g., Logitech Unifying receiver). Typically 2.4 GHz band. Range up to 10 meters. No pairing required—dongle and device are pre-paired.

NFC (Near Field Communication): Used for contactless payments and data transfer. Range ~4 cm. Works with smartphones and some peripherals.

Common Input Devices and Their Exam-Relevant Details

Mouse: Optical mice use an LED or laser and a camera to track surface features. Laser mice work on more surfaces (including glass). DPI (dots per inch) indicates sensitivity—higher DPI means faster cursor movement. Buttons: left, right, scroll wheel, and additional programmable buttons. Gaming mice may have adjustable DPI, polling rate, and onboard memory for profiles.

Keyboard: Membrane keyboards use a rubber dome under keys; mechanical keyboards use individual switches (Cherry MX, etc.). Key rollover (NKRO) allows multiple simultaneous key presses. Multimedia keyboards have extra keys for volume, play/pause, etc. Wireless keyboards use Bluetooth or RF; they require batteries and may have power-saving features.

Touchscreen: Capacitive touchscreens detect finger capacitance; resistive touchscreens detect pressure (can be used with gloves or stylus). Multi-touch supports gestures like pinch-to-zoom. Calibration may be needed for resistive screens. Used in kiosks, tablets, and all-in-one PCs.

Scanner: Flatbed scanners use a CCD (charge-coupled device) or CIS (contact image sensor). Resolution measured in DPI (dots per inch). Color depth (e.g., 48-bit). Interface: USB or network (for document scanners). TWAIN and WIA are common driver interfaces.

Barcode Reader: Uses a laser or camera to read barcodes (1D: UPC, Code 128; 2D: QR code, Data Matrix). Connection: USB (often appears as a keyboard, sending keystrokes) or Bluetooth. Configuration: may require setting prefixes/suffixes, baud rate, etc.

Biometric Devices: Fingerprint readers use optical, capacitive, or ultrasonic sensors. Facial recognition uses infrared cameras. Security: biometric data is stored as a hash, not raw image. Windows Hello supports facial and fingerprint authentication.

Game Controllers: Joysticks, gamepads, and steering wheels. Interface: USB, Bluetooth, or proprietary wireless. They use HID protocol. Force feedback (vibration) is common. Calibration may be required in OS settings.

Configuration and Troubleshooting

Driver Installation: Most input devices are plug-and-play (PnP) via USB. The OS uses a generic HID driver. For advanced features (e.g., programmable buttons), vendor-specific drivers are needed. Device Manager (devmgmt.msc) shows device status. A yellow exclamation indicates driver issues.

Troubleshooting Common Issues: - Device not recognized: Check USB port (try another), cable, power (for wireless, check batteries). Restart computer. Update driver. - Wireless interference: 2.4 GHz devices can interfere with Wi-Fi. Use Bluetooth or move dongle to front USB port. - Keyboard/mouse not responding: For PS/2, ensure it's plugged in before boot. For USB, check BIOS settings (legacy USB support). - Touchscreen unresponsive: Calibrate in OS settings. Check for cracked digitizer. - Scanner not scanning: Install driver, check TWAIN/WIA settings, ensure scanner is powered on.

Device Manager Commands: - devmgmt.msc - Open Device Manager. - msinfo32 - System Information (lists devices). - driverquery - List installed drivers.

How Peripherals Interact with the OS

Input devices generate interrupts (IRQs) or are polled. For USB, the host controller polls each device periodically. The OS's input subsystem (e.g., Windows Input Stack) processes events and dispatches them to the foreground application. For example, a key press triggers a keyboard interrupt, the OS reads the scan code, maps it to a character (using keyboard layout), and sends it to the active window.

Exam Focus: Objective 3.7

The exam tests your ability to identify, connect, and troubleshoot peripherals. Key points:

Know connector types and their uses (USB, PS/2, Bluetooth, NFC).

Understand HID protocol basics.

Be able to troubleshoot common issues (device not recognized, driver problems, wireless interference).

Know the difference between optical and laser mice, capacitive and resistive touchscreens.

Remember that PS/2 is not hot-swappable; USB is.

Recognize that biometric devices require proper drivers and Windows Hello support.

For scanners, understand DPI and color depth.

For barcode readers, know they often emulate a keyboard.

Summary of Key Values

| Device | Interface | Typical Speed/Resolution | Notes | |--------|-----------|--------------------------|-------| | USB 2.0 | USB | 480 Mbps | Max cable 5m | | USB 3.0 | USB | 5 Gbps | Max cable 3m | | PS/2 | 6-pin DIN | N/A | Not hot-swappable | | Bluetooth 4.0 | Wireless | 1 Mbps (LE) | Range 10m | | Optical mouse | USB | 800-1600 DPI | Works on most surfaces | | Laser mouse | USB | Up to 8200 DPI | Works on glass | | Capacitive touch | N/A | Multi-touch | Finger only | | Resistive touch | N/A | Single-touch | Stylus, gloved finger |

Walk-Through

1

Connect the peripheral physically

For wired devices, plug the cable into an appropriate port (USB, PS/2, etc.). Ensure the connector is oriented correctly (USB Type-A is keyed, Type-C is reversible). For PS/2, the computer must be off to avoid damage. For wireless devices, insert batteries and connect the dongle (if RF) or enable Bluetooth pairing mode. The device may have a power switch. If using Bluetooth, ensure the computer's Bluetooth adapter is enabled (check in Device Manager or Settings). The physical connection establishes the electrical link; the host controller detects the device via voltage changes or enumeration.

2

Device enumeration and driver loading

When a USB device is connected, the host controller detects a change on the data lines (D+ and D-). It sends a reset signal and then reads the device descriptor to determine the device class (e.g., HID). The OS then loads the appropriate driver. For standard HID devices, the built-in Windows HID driver is used. If the device is not recognized, a generic driver may be loaded, or the OS may prompt for a driver. Device Manager shows the device status; a yellow exclamation indicates a driver problem. The enumeration process assigns an address and configures endpoints for data transfer.

3

Configure device settings

After driver installation, the device may require configuration. For example, a mouse: adjust pointer speed, button functions, scroll speed in Control Panel > Mouse. A keyboard: set repeat delay and rate. A scanner: install vendor software, set default resolution (e.g., 300 DPI) and color depth. A barcode reader: configure prefix/suffix characters via barcode configuration cards. Biometric devices: enroll fingerprints or face in Windows Hello settings. Game controllers: calibrate axes and buttons in Game Controllers settings (joy.cpl). Configuration settings are stored in the registry or device firmware.

4

Test functionality

Verify the device works as expected. For a keyboard, open Notepad and type. For a mouse, move and click. For a touchscreen, test touch and gestures. For a scanner, perform a test scan. For a barcode reader, scan a barcode and check input. For biometrics, lock the computer and unlock using the enrolled method. If the device doesn't work, check Device Manager for errors, try a different port, restart the computer, or reinstall the driver. For wireless devices, check battery level and interference. For Bluetooth, ensure pairing is complete and the device is connected (Bluetooth settings show 'Connected').

5

Troubleshoot any issues

Common troubleshooting steps: 1) Check physical connections (cable, power). 2) Try a different USB port (avoid front panel ports if issue persists). 3) Restart the computer. 4) Update or reinstall the driver (Device Manager > right-click > Update driver or Uninstall device and restart). 5) For wireless, replace batteries, move dongle closer, or use a USB extension cable. 6) For Bluetooth, remove and re-pair the device. 7) Check for OS updates. 8) Test the device on another computer to isolate hardware failure. 9) For PS/2, if device not detected, check BIOS settings (PS/2 port enabled). 10) If device works intermittently, check for USB power management settings (disable selective suspend).

What This Looks Like on the Job

Scenario 1: Retail Barcode Scanning System

A retail store uses barcode scanners at checkout. Each scanner is a USB HID device that emulates a keyboard—when a barcode is scanned, the scanner sends a string of digits followed by an Enter key. The point-of-sale (POS) software receives this as if typed. Common issues: scanner may send extra characters or miss the Enter, causing incorrect product lookup. Solution: configure the scanner's prefix/suffix via configuration barcodes (e.g., set suffix to CR+LF). Also, ensure the scanner's USB cable is not too long (USB 2.0 max 5m) and that the POS computer has USB ports that supply enough power (some scanners draw 500mA). In a high-volume environment, scanners may be used hundreds of times per day; they must be durable and have a high scan rate (e.g., 200 scans/sec). Troubleshooting: if a scanner stops working, check the cable, try a different USB port, or re-scan the configuration barcode to reset to factory defaults. If the scanner beeps but no data appears, the HID driver may be corrupted—reinstall the driver.

Scenario 2: Biometric Access Control for Corporate Laptops

A company deploys Windows Hello facial recognition cameras on all laptops. This uses infrared (IR) cameras to map the user's face securely. The camera is a USB device that must be enabled in BIOS (some laptops have a physical shutter). Configuration: each user enrolls their face in Settings > Accounts > Sign-in options. The biometric data is stored locally as a hash, not sent to the cloud. Common issues: the camera may not be recognized if the driver is missing (check Device Manager under 'Cameras' or 'Biometric devices'). If the camera works but facial recognition fails, ensure good lighting (IR works in dark but may struggle with bright backlight). The user must look directly at the camera. If the camera is covered by a privacy shutter, recognition fails. Troubleshooting: run the Windows Hello facial recognition troubleshooter, update the camera driver, or check for firmware updates. In enterprise deployments, group policies can disable biometrics for security reasons.

Scenario 3: Healthcare Touchscreen Kiosks

Hospitals use touchscreen kiosks for patient check-in. These are typically all-in-one PCs with capacitive touchscreens. They must be calibrated for accurate touch. Configuration: use the OS touch calibration tool (Tablet PC Settings in Control Panel). The kiosk software may disable the keyboard and mouse to prevent unauthorized use. Common issues: the touchscreen may become inaccurate over time due to software updates or physical damage. Solution: recalibrate. If the touchscreen is unresponsive, check the display cable (e.g., USB + video over USB-C) and ensure the touch controller driver is installed. In a sterile environment, the screen may be covered with a protective film; capacitive touch works through film but may be less sensitive. Troubleshooting: reboot the kiosk, check Device Manager for 'HID-compliant touch screen', and update the driver. If the screen registers phantom touches, clean the screen and check for interference from other devices.

How 220-1101 Actually Tests This

The 220-1101 exam tests peripherals under Objective 3.7: 'Given a scenario, install and configure common peripheral devices.' This includes identifying appropriate interfaces, connecting devices, and troubleshooting. Questions often present a scenario (e.g., 'A user's wireless mouse stops working. What should you check first?') and ask for the best solution.

Most common wrong answers and why candidates choose them: 1. 'Replace the mouse immediately' – Candidates assume hardware failure, but the most common cause is dead batteries or a disconnected dongle. Always check power and connections first. 2. 'Reinstall the operating system' – When a scanner fails to scan, candidates think it's a system issue, but often it's a missing driver or incorrect TWAIN source. Reinstalling the scanner driver is the correct first step. 3. 'Disable USB selective suspend' – While this can fix intermittent USB disconnects, it's not the first step. Candidates may jump to power management settings without checking cables or ports. 4. 'Plug the PS/2 keyboard in while the computer is on' – Candidates forget that PS/2 is not hot-swappable. This can damage the port. The correct action is to shut down before connecting.

Specific numbers and terms that appear verbatim on the exam: - USB 2.0 maximum cable length: 5 meters (16.4 ft) - USB 3.0 maximum cable length: 3 meters (9.8 ft) - PS/2 keyboard connector color: purple; mouse: green - Bluetooth class 2 range: 10 meters (33 ft) - Optical mouse resolution: typically 800-1600 DPI - Laser mouse: works on glass - Capacitive touchscreen: requires bare finger (or capacitive stylus) - Resistive touchscreen: works with any object (finger, gloved, stylus)

Edge cases and exceptions: - Some USB devices (like some barcode scanners) are not plug-and-play and require driver installation from a CD or website. - Biometric devices may not work in Safe Mode because the biometric service is disabled. - Game controllers may need calibration in the OS after driver installation. - Some keyboards have NKRO (n-key rollover) only when connected via PS/2, not USB (USB HID limits to 6 keys plus modifiers).

How to eliminate wrong answers using the underlying mechanism: - If a wireless keyboard works only when very close to the dongle, the issue is interference or range—not driver. So answers about reinstalling drivers are wrong. - If a touchscreen registers touches in wrong locations, the problem is calibration—not hardware failure. So answers about replacing the screen are wrong. - If a scanner is not detected, check the USB connection first—not the TWAIN driver. So answers about reinstalling the scanning software are premature.

Key Takeaways

USB 2.0 max cable length is 5 meters; USB 3.0 max is 3 meters.

PS/2 is not hot-swappable; always shut down before connecting.

Bluetooth Class 2 range is 10 meters (33 feet).

Optical mice use LED; laser mice use laser and work on more surfaces including glass.

Capacitive touchscreens need bare finger; resistive work with any object.

Barcode readers often emulate a keyboard (HID).

Biometric devices store data as a hash, not raw image.

Device Manager (devmgmt.msc) is the primary tool for driver troubleshooting.

A yellow exclamation in Device Manager indicates a driver problem.

Wireless peripherals may interfere with 2.4 GHz Wi-Fi; use Bluetooth or move dongle.

Easy to Mix Up

These come up on the exam all the time. Here's how to tell them apart.

Optical Mouse

Uses an LED and a camera to track surface features.

Typically 800-1600 DPI resolution.

Works on most non-glossy surfaces; may struggle on glass or glossy desks.

Less expensive than laser mice.

Common in office and basic home use.

Laser Mouse

Uses a laser (VCSEL) for illumination.

Can achieve higher DPI (up to 8200+).

Works on more surfaces, including glass and glossy surfaces (depending on model).

More expensive due to laser component.

Preferred by gamers and professionals for precision.

Capacitive Touchscreen

Detects touch by measuring capacitance change from a finger.

Requires a conductive object (bare finger or capacitive stylus).

Supports multi-touch gestures (pinch, zoom).

More responsive and accurate for finger input.

Common in smartphones, tablets, and modern all-in-ones.

Resistive Touchscreen

Detects touch by pressure connecting two conductive layers.

Works with any object: finger, gloved hand, stylus, pen.

Typically single-touch only (some support dual-touch).

Less sensitive; requires firm press.

Used in industrial environments, ATMs, and older devices.

USB 2.0

Maximum data rate: 480 Mbps.

Maximum cable length: 5 meters.

Connector has 4 pins (VBUS, D+, D-, GND).

Often black or white plastic inside connector.

Sufficient for keyboards, mice, and low-speed peripherals.

USB 3.0

Maximum data rate: 5 Gbps (SuperSpeed).

Maximum cable length: 3 meters (unless active).

Connector has 9 pins (additional SuperSpeed pairs).

Typically blue plastic inside connector.

Required for high-speed devices like external SSDs and high-res webcams.

Watch Out for These

Mistake

All USB cables are the same; you can use any cable to connect any device.

Correct

USB cables have different specifications for data rate and power. USB 2.0 and 3.0 cables are physically different (3.0 has more internal wires). Using a USB 2.0 cable on a USB 3.0 device will limit speed to 480 Mbps. Also, some cables are charge-only and lack data lines.

Mistake

PS/2 devices are hot-swappable like USB.

Correct

PS/2 is not hot-swappable. Plugging or unplugging a PS/2 keyboard or mouse while the computer is on can short the port and damage the motherboard. Always shut down first.

Mistake

Bluetooth devices always have a range of 100 meters.

Correct

Bluetooth has three classes. Class 2 (most common) has a range of 10 meters (33 ft). Class 1 can reach 100 meters but is rare. Class 3 has a range of 1 meter.

Mistake

A laser mouse works on any surface, including mirrors.

Correct

Laser mice work on more surfaces than optical mice, including glossy surfaces and glass, but they can struggle on transparent or mirrored surfaces because the laser may not reflect properly. Some high-end laser mice can track on glass, but it's not universal.

Mistake

If a USB device is not recognized, the device is broken.

Correct

A device not recognized can be due to a faulty port, cable, driver issue, or power problem. Always try a different port, different cable, and another computer before concluding the device is defective. Driver issues are common.

Do You Actually Know This?

Reveal each answer, then mark whether you got it right. Score 60%+ to unlock the next chapter.

Frequently Asked Questions

What is the maximum cable length for USB 2.0 and USB 3.0?

USB 2.0 has a maximum cable length of 5 meters (16.4 feet). USB 3.0 has a maximum of 3 meters (9.8 feet). Exceeding these lengths can cause signal degradation and data errors. For longer distances, use active (repeater) cables or USB over Ethernet extenders.

Can I plug a PS/2 keyboard into a USB port?

Not directly. PS/2 and USB use different electrical signaling and connectors. You can use an active adapter that converts PS/2 to USB, but it must be powered. Passive adapters may not work because the protocols are different. Some motherboards have combo ports that accept both, but they are rare.

Why does my wireless mouse stop working after a few minutes?

The most common cause is the mouse entering a power-saving sleep mode. Move the mouse or press a button to wake it. Other causes: dead batteries, interference from other wireless devices, or the dongle being too far away. Check battery level and try moving the dongle to a closer USB port.

How do I calibrate a touchscreen in Windows?

Go to Control Panel > Tablet PC Settings > Calibrate. Follow the on-screen instructions to tap crosshairs. For Windows 10/11, you can also search for 'Calibrate' in Settings. Calibration aligns the touch input with the display. This is especially needed for resistive touchscreens.

What is the difference between a laser and optical mouse?

An optical mouse uses an LED and a camera to track surface texture. A laser mouse uses a laser (VCSEL) for illumination. Laser mice can achieve higher DPI and work on more surfaces, including glass and glossy finishes, because the coherent light provides better contrast on smooth surfaces. Optical mice are cheaper but may fail on shiny surfaces.

My barcode scanner is not working. What should I check?

First, ensure the scanner is powered (check cable or batteries). Check the USB connection and try a different port. The scanner may need to be configured with the correct suffix (e.g., Enter key). Scan the configuration barcode for your model to reset to defaults. Also, verify that the scanner is set to the correct barcode symbology (e.g., UPC, Code 128). If it still doesn't work, test on another computer.

How does Windows Hello facial recognition work?

Windows Hello uses an infrared (IR) camera to capture a depth map of your face. This is more secure than a standard camera because it can detect spoofing (e.g., photos). The data is processed locally and stored as a hash on the device. To set it up, go to Settings > Accounts > Sign-in options > Windows Hello Face. You need a compatible IR camera.

Terms Worth Knowing

Ready to put this to the test?

You've just covered Peripherals and Input Devices — now see how well it sticks with free 220-1101 practice questions. Full explanations included, no account needed.

Done with this chapter?