Pulse Width Modulation STEM Kit
Instructors Guide
Code
Lesson Plan
Pulse Width Modulation (PWM) STEM Kit: 9th Grade Lesson Plan
Lesson Overview
- Title: Exploring Pulse Width Modulation
- Grade Level: 9th Grade
- Duration: 90 minutes
- Subject Areas: Electronics, Computer Science, Physics
Learning Objectives
By the end of this lesson, students will be able to:
- Explain the concept of Pulse Width Modulation (PWM)
- Assemble a basic circuit on a breadboard
- Program a Raspberry Pi Pico microcontroller
- Understand the relationship between duty cycle and LED brightness
- Analyze how PWM is used in everyday technology
Materials Needed
- PWM STEM Kit (per student or group):
- Raspberry Pi Pico ($4.00)
- Breadboard ($1.75)
- Potentiometer (20K ohm) ($0.50)
- LED ($0.05)
- 128x64 OLED Display ($13.00)
- Jumper wires
- USB cable for Raspberry Pi Pico
- Computer with Thonny Python IDE installed
- Student worksheets
- Multimeter (optional)
Prior Knowledge Required
- Basic understanding of circuits
- Introduction to programming concepts
- Familiarity with variables and functions
Preparation
- Install Thonny Python IDE on classroom computers
- Test all components before class
- Prepare the Python code template for students
- Print student worksheets
Introduction (15 minutes)
- Begin with a brief discussion: "What happens when you dim the lights in your home? How do you think electronic devices control power?"
- Introduce the concept of Pulse Width Modulation:
- Define PWM as a technique for controlling power delivery
- Explain duty cycle as the ratio of "on time" to total time
- Show examples of PWM in everyday devices (LED lights, motor speed control, audio synthesis)
- Demonstrate a completed PWM circuit to the class
Circuit Assembly (20 minutes)
- Distribute the PWM STEM kits to students
- Guide students through the following assembly steps:
- Place the Raspberry Pi Pico on the breadboard
- Connect the potentiometer to an analog input pin
- Connect the LED to a PWM-capable pin (with appropriate resistor)
- Wire the OLED display using I2C connection
- Check each group's circuit before proceeding
Programming the Microcontroller (25 minutes)
- Provide students with the Python code template
- Explain key sections of the code:
- Setting up the PWM pin
- Reading the potentiometer value
- Converting analog reading to PWM duty cycle
- Updating the OLED display
- Have students complete sections of the code
- Assist with uploading the code to the Raspberry Pi Pico
Experimentation and Challenges (20 minutes)
- Have students run their completed circuits
- Direct students to complete the following challenges:
- Turn the knob to achieve exactly 25% duty cycle
- Find the point where pulse width equals spacing between pulses
- Create a pattern of gradually increasing then decreasing brightness
- Students should record observations in their worksheets
Discussion and Connection to Real-World Applications (10 minutes)
- Discuss findings as a class
- Explore real-world applications of PWM:
- Motor speed control in drones and robots
- LED dimming in displays and lighting
- Audio synthesis in music production
- Power management in electronic devices
Assessment and Wrap-Up (10 minutes)
- Quick quiz to check understanding of key concepts
- Have students explain how changing the duty cycle affects LED brightness
- Collect student worksheets
- Preview next lesson on advanced PWM applications
Extensions and Homework
- Research additional applications of PWM technology
- Modify the code to create a "breathing" LED effect
- Design a simple project that incorporates PWM control
Appendix: Sample Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
|
Differentiation Strategies
- For advanced students: Challenge them to modify the code to implement multiple patterns or to control multiple LEDs with different effects
- For struggling students: Provide additional guidance with circuit assembly and work with them in smaller groups on programming concepts
- For visual learners: Include additional diagrams of circuit connections and PWM signals
- For kinesthetic learners: Provide physical models or animations demonstrating duty cycle concepts