Week 10: Output Devices
This document content was generated by AI based on the course syllabus and video conference subtitles that I provided to Claude 3.7 Sonnet.
Course Overview
This week's course introduces various output devices and their control methods, preparing us for the upcoming machine building course. We will learn how to connect and control LEDs, displays, motors, and various actuators, as well as how to measure their power consumption. This knowledge is crucial for the Fab 2.0 era (transitioning from buying machines to making machines). The main topics covered in this course include:
- Electrical safety basics
- Power management and supply methods
- Current measurement techniques
- LED control (monochrome, RGB, and arrays)
- Displays (LCD, OLED, TFT)
- Motor control (DC motors, servo motors, stepper motors, brushless motors)
- Other actuators (speakers, relays, artificial muscles, etc.)
Detailed Course Content
1. Electrical Safety
Electrical safety is the primary consideration when dealing with output devices, especially as we begin to use higher voltages and currents:
- Effects of current on the human body:
- ~1 mA: Safe range
- ~10 mA: Electric shock sensation, muscle contraction
- ~100 mA: Potentially fatal, can cause cardiac fibrillation
- Human body resistance:
- External skin: Megaohm level
- Internal tissues: Kiloohm level
- Insulation breakdown: Approximately 1 kilovolt per millimeter
- Safety considerations:
- Power capacitors can store charge for a long time, requiring safe discharge
- Induced back EMF (as in motors) can produce high voltages
- Polarity protection (diodes, MOSFETs)
- Level shifting (using MOSFETs)
- Connector polarity design
- Use of circuit protection components
Safety recommendations for handling power electronics: Do not work alone when tired; keep the work area tidy; maintain a calm and focused mindset; be prepared to disconnect power immediately.
Reference link: Electrical Safety Basics
2. Power Management
Providing adequate power for output devices is key, with several power supply options available:
USB Power
- USB PD (Power Delivery): Allows USB to provide higher voltage and current
- USB QC (Quick Charge): Proprietary protocol easier to implement than USB PD
- USB power adapters, hubs, and battery packs can be used
- USB power modules and meters can be used for monitoring
Power Supply Types
- Switching power supplies: Efficient but potentially noisy
- Linear power supplies: Low noise but less efficient
- Desktop power supplies: Adjustable voltage and current, suitable for testing
Batteries
- Lithium Polymer (LiPo) batteries:
- High energy density, widely used
- Requires dedicated charging controllers
- Fire risk exists, should be stored properly
Wireless Power
- Transfers energy over short distances through magnetic fields
- Transmits lower power over longer distances
Reference links:
3. Current Measurement Techniques
Understanding the power consumption of output devices is essential for selecting appropriate power supplies. There are several methods to measure current:
- Using desktop power supplies: Directly read the current meter display
- Sense resistor method: Connect a small resistor (e.g., 1 ohm) in series in the circuit and measure the voltage drop across it
- Magnetic field sensing: Measure the strength of the magnetic field around a conductor
- Inductive detection: For AC loads, coils can be used to sense changing magnetic fields
4. LED Control
4.1 Basic LED Control
- LEDs require current-limiting resistors (calculation method: (supply voltage - LED forward voltage) / desired current)
- Can be controlled using Arduino or MicroPython
- Sample code (MicroPython):
from machine import Pin
import time
led = Pin(2, Pin.OUT) # Using GPIO 2 to connect the LED
while True:
led.value(1) # Turn on LED
time.sleep(0.5)
led.value(0) # Turn off LED
time.sleep(0.5)
4.2 PWM Control of LED Brightness
PWM (Pulse Width Modulation) is an important technique for controlling LED brightness:
- Controls brightness by rapidly switching the LED on and off (using high and low pulses)
- The human eye perceives rapid flickering as different brightness levels
- Duty cycle determines brightness (high duty cycle = bright, low duty cycle = dim)
Sample code (MicroPython):
from machine import Pin, PWM
import time
pwm = PWM(Pin(2)) # Create PWM object on GPIO 2
pwm.freq(1000) # Set frequency to 1000Hz
# Fade effect
while True:
# Gradually brighten
for duty in range(0, 65535, 1024):
pwm.duty_u16(duty)
time.sleep(0.01)
# Gradually dim
for duty in range(65535, 0, -1024):
pwm.duty_u16(duty)
time.sleep(0.01)
4.3 Charlieplexing
Charlieplexing is a technique for controlling multiple LEDs with fewer pins:
- Utilizes tri-state logic (high, low, high impedance)
- With n pins, can control n(n-1) LEDs
- Each pin can act as both a row and a column
Working principle:
- Only one LED is lit at a time
- Through rapid switching, the human eye perceives all LEDs as simultaneously lit
- Three pin states: output high, output low, high impedance state (input mode)
Example applications: LED matrices, bar graphs, indicators
4.4 RGB LED Control
RGB LEDs contain red, green, and blue LEDs that can be mixed to produce various colors:
- Can be common anode or common cathode type
- Mix colors by controlling the brightness of each of the three LEDs
- Blue LEDs are typically less efficient and may require different current-limiting resistors
4.5 High-Power LED Driving
For high-power LEDs:
- Processor pins cannot directly provide sufficient current (typically limited to 20-50mA)
- Use MOSFETs as switching elements
- N-channel MOSFETs for low-side switching, P-channel MOSFETs for high-side switching
- Multiple LEDs can be connected in series (total voltage drop close to power supply voltage) to reduce the required current-limiting resistors
- Parallel multiple series LEDs to increase overall brightness
5. Displays
5.1 LCD Displays
Basic use of Liquid Crystal Displays (LCDs):
- Common HD44780 controller
- Can use parallel or I2C communication (I2C requires additional adapter chips like PCF8574)
- Note that I2C requires pull-up resistors (typically 1-10kΩ)
5.2 OLED Displays
Organic Light Emitting Diode (OLED) displays:
- Commonly uses SSD1306 controller
- Can communicate via I2C or SPI
- Brighter, better contrast, and lower power consumption than LCDs
- Common resolution is 128×64 pixels
MicroPython sample code:
from machine import Pin, I2C
import ssd1306
# Create I2C object
i2c = I2C(0, scl=Pin(22), sda=Pin(21))
# Create OLED object
oled = ssd1306.SSD1306_I2C(128, 64, i2c)
# Display text
oled.text("Hello World!", 0, 0)
oled.show()
# Draw graphics
oled.rect(10, 20, 30, 30, 1) # Rectangle
oled.show()
5.3 TFT Displays
Thin Film Transistor (TFT) displays:
- Common controllers include ILI9341, ST7735, etc.
- Communicate via SPI
- Support full-color display with higher resolution
- Suitable for scenarios requiring more complex graphics and UI
5.4 E-Ink Displays
- Non-volatile (maintain display content when powered off)
- Lower refresh rate
- Extremely low power consumption, suitable for battery-powered devices
- Good readability in strong light
6. Motor Control
6.1 DC Motors
DC motor basics:
- Require an H-bridge driver for bidirectional control
- H-bridge basic principle: A circuit composed of four switches (typically MOSFETs)
- Can use integrated H-bridge chips (such as DRV8251A, TB67H451, A4950, etc.)
H-bridge operation modes:
- Forward: Top-left and bottom-right switches closed
- Reverse: Top-right and bottom-left switches closed
- Braking: Both top or both bottom switches closed simultaneously
- Coasting: All switches open
Advantages of using integrated H-bridge chips:
- Built-in charge pump (generates high-voltage switching signals)
- Has comparators (for hardware PWM)
- Built-in protection features (overcurrent, overtemperature protection)
Considerations:
- Power decoupling (using capacitors of different values)
- Use thick circuit traces to handle high currents
- Thermal design (heat dissipation)
6.2 Speaker Control
Speakers can be viewed as special motors and can also be driven using H-bridges:
- Use PWM to generate tones
- Wavetable Synthesis can produce more complex sounds
- Can play pre-recorded audio samples
Code example (tone generation):
from machine import Pin, PWM
import time
speaker = PWM(Pin(15))
speaker.freq(440) # Set frequency to 440Hz (A note)
speaker.duty_u16(32767) # 50% duty cycle
time.sleep(1) # Play for 1 second
speaker.duty_u16(0) # Stop sound
6.3 Servo Motors
Servo motor control:
- Standard servos use 50Hz PWM signals
- Pulse width typically between 1-2ms
- 1ms = 0 degrees, 2ms = 180 degrees (specific values depend on servo model)
- Continuous rotation servos can be used as wheels (pulse width controls direction and speed)
Code example:
from machine import Pin, PWM
import time
servo = PWM(Pin(15))
servo.freq(50) # Standard servo frequency is 50Hz
# Turn to 0 degrees
servo.duty_ns(1000000) # 1ms pulse
time.sleep(1)
# Turn to 90 degrees
servo.duty_ns(1500000) # 1.5ms pulse
time.sleep(1)
# Turn to 180 degrees
servo.duty_ns(2000000) # 2ms pulse
6.4 Brushless DC Motors (BLDC)
Advantages and control of brushless motors:
- Higher efficiency, lower noise, longer lifespan
- Typically have three-phase windings
- Require three half-bridge drivers (or three-phase H-bridge)
- Often controlled using Electronic Speed Controllers (ESC)
- ESCs accept the same PWM signals as servos
Types of brushless motors:
- Inrunner
- Outrunner
- Pancake
- Gimbal motors
6.5 Stepper Motors
Stepper motor control:
- Typical step angle is 1.8 degrees (200 steps/revolution)
- Requires two H-bridges or dedicated stepper drivers
- Supports full-step, half-step, and microstepping
- Step/direction interface simplifies control
Driver options:
- Using two H-bridges (such as DRV8251A)
- Dedicated stepper motor drivers (such as DRV8428)
- Commercial driver modules (such as Trinamic, Pololu products)
Advantages of microstepping:
- Smoother motion
- Lower noise
- Higher precision
7. Other Actuators
7.1 Solid State Relays
Used to control AC loads:
- Electrical isolation through optocouplers
- Switch the high-voltage side (hot side) to ensure safety
- Can be used to control household appliances, heating elements, etc.
7.2 Artificial Muscles and Soft Actuators
Innovative actuator technologies:
- Shape Memory Alloys (SMA)
- Artificial muscles made from fishing line
- Piezoelectric materials
- Soft robotic actuators
- Pneumatic/hydraulic systems
These technologies can provide unique motion characteristics, suitable for applications requiring mimicry of natural movements.
Assignment Requirements
Group Assignment
Measure the power consumption of output devices:
- Choose an output device (LED, display, motor, etc.)
- Measure its power consumption using appropriate methods (USB power meter, sense resistor, power supply display, etc.)
- Record power consumption changes under different operating conditions (such as different motor speeds, different LED brightness)
- Analyze results and discuss implications for system design
Individual Assignment
Add an output device to your microcontroller board and program it to work:
- Choose an output device related to your final project
- Correctly connect it to your previously designed microcontroller board
- Write a program to control the device
- Document the process and show results (including circuit design, code, and demonstration video)
Learning Resources
Electrical Safety
- Electrical Safety Basics
- Reverse Polarity Protection Circuit Design
- Logic Level Shifting Basics
- Circuit Protection Components
Power Management
- Wire Gauge Guide
- USB Power Delivery
- Li-ion and LiPoly Battery Guide
- Wireless Power Transmission Research
LED Control
Displays
Motor Control
- Integrated Circuit H-bridges
- Texas Instruments Motor Drivers
- Trinamic Motor Control Products
- Pololu Motion Control Modules
Innovative Actuators
- Making Artificial Muscles Using Fishing Line
- Harvard University Soft Robotics Group
- Shape-Changing Fiber Research
Recommended Example Projects
- Lingdong's OLED Output Device Project - Showcases advanced applications of OLED displays, including 3D rendering and menu systems