Please enable JavaScript to use CodeHS

Outline


1. Introduction to Programming with Turtle Graphics
1.1 Intro to Python with Tracy the Turtle
Video 1.1.1 Intro to Tracy
Check for Understanding 1.1.2 Intro to Tracy
Example 1.1.3 Slinky
Exercise 1.1.4 Stretched Slinky
1.2 Tracy's Grid World
Video 1.2.1 Tracy's Grid World
Check for Understanding 1.2.2 Tracy's Grid World
Example 1.2.3 Dashed Line
Exercise 1.2.4 Shorter Dashed Line
Exercise 1.2.5 Caterpillar
Badge 1.2.6 Grid World Badge
1.3 Turning Tracy
Video 1.3.1 Turning Tracy
Check for Understanding 1.3.2 Turning Tracy
Example 1.3.3 Square
Example 1.3.4 X and Y Axes
Exercise 1.3.5 Rectangle
Exercise 1.3.6 4 Columns
1.4 For Loops
Video 1.4.1 For Loops
Check for Understanding 1.4.2 For Loops
Example 1.4.3 Square Using Loops
Example 1.4.4 Dotted Line
Exercise 1.4.5 Row of Circles
Exercise 1.4.6 4 Columns 2.0
Badge 1.4.7 Looping Badge
1.5 Turning Tracy Using Angles
Video 1.5.1 Turning Tracy Using Angles
Check for Understanding 1.5.2 Turning Tracy Using Angles
Example 1.5.3 Asterisk
Example 1.5.4 Four Circles
Exercise 1.5.5 Hexagon
Exercise 1.5.6 'X' Marks the Spot
Exercise 1.5.7 Circle Pyramid
1.6 Comments
Video 1.6.1 Comments
Check for Understanding 1.6.2 Comments
Example 1.6.3 Four Circles with Comments
Exercise 1.6.4 Circle Pyramid with Comments
1.7 Naming Guidelines
Video 1.7.1 Naming Guidelines
Check for Understanding 1.7.2 Naming Guidelines
1.8 Functions
Video 1.8.1 Functions
Check for Understanding 1.8.2 Functions
Example 1.8.3 X and Y Axes with Hash Marks
Exercise 1.8.4 Beaded Bracelet
Exercise 1.8.5 Shape Stack
Badge 1.8.6 Functions Badge
1.9 Artistic Effects
Video 1.9.1 Artistic Effects
Check for Understanding 1.9.2 Artistic Effects
Example 1.9.3 Rainbow Octagon
Example 1.9.4 Circle Square Triangle
Exercise 1.9.5 Four Colored Triangles
Exercise 1.9.6 Colorful Bracelet
Challenge 1.9.7 Kid's Shapes Toy
1.10 Top Down Design
Video 1.10.1 Top Down Design
Check for Understanding 1.10.2 Top Down Design
Example 1.10.3 Bubble Wrap
Exercise 1.10.4 Bubble Wrap 2.0
Exercise 1.10.5 Sidewalk
1.11 Variables
Video 1.11.1 Variables
Check for Understanding 1.11.2 Variables
Example 1.11.3 Increasing Length
Exercise 1.11.4 Dartboard
Exercise 1.11.5 Line of Increasing Blocks
1.12 User Input
Video 1.12.1 User Input
Check for Understanding 1.12.2 User Input
Example 1.12.3 Color Coded Increasing Length
Exercise 1.12.4 Colored Dartboard
Exercise 1.12.5 Four Corners
Badge 1.12.6 User Input Badge
1.13 Parameters
Video 1.13.1 Parameters
Check for Understanding 1.13.2 Parameters
Example 1.13.3 Concentric Circles
Exercise 1.13.4 Colorful Caterpillar
Exercise 1.13.5 Circle in a Square
Exercise 1.13.6 Snowman
1.14 Using i in For Loops
Video 1.14.1 Using i in For Loops
Check for Understanding 1.14.2 Using i in For Loops
Example 1.14.3 Geometry
Exercise 1.14.4 Geometry 2.0
1.15 Extended Loop Control
Video 1.15.1 Extended Loop Control
Check for Understanding 1.15.2 Extended Loop Control
Example 1.15.3 Square Swirl
Exercise 1.15.4 Dartboard using i
Exercise 1.15.5 Phone Signal
Badge 1.15.6 Master of i Badge
1.16 If Statements
Video 1.16.1 If Statements
Check for Understanding 1.16.2 If Statements
Example 1.16.3 X and Y Axis with Bolded Marks
Exercise 1.16.4 Happy Face
Exercise 1.16.5 Black and White Squares
1.17 If/ Else Statements
Video 1.17.1 If/Else Statements
Check for Understanding 1.17.2 If/Else Statements
Example 1.17.3 Positive, Negative, Zero
Exercise 1.17.4 Rating
Exercise 1.17.5 Happy/ Sad Face
1.18 While Loops
Video 1.18.1 While Loops
Check for Understanding 1.18.2 While Loops
Example 1.18.3 Increasing Circles
Exercise 1.18.4 Increasing Squares
Exercise 1.18.5 Guess a Number
Badge 1.18.6 Conditionals Badge
Survey 1.18.7 Mindset Survey 1
1.19 Putting Together Control Structures
Video 1.19.1 Putting Together Control Structures
Check for Understanding 1.19.2 Putting Together Control Structures
Example 1.19.3 Block Pyramid
Exercise 1.19.4 Guess a Number 2.0
Exercise 1.19.5 Circle Pyramid 2.0
Challenge 1.19.6 Checkerboard
Badge 1.19.7 Tracy the Turtle Badge
1.20 Intro to Programming with Turtle Graphics Quiz
Quiz 1.20.1 Putting It All Together Quiz
Badge 1.20.2 Intro to Programming with Turtle Graphics Badge
2. Basic Python and Console Interaction
2.1 Printing in Python
Video 2.1.1 Printing in Python
Check for Understanding 2.1.2 Printing in Python
Example 2.1.3 Hello, world!
Example 2.1.4 Printing Multiple Lines
Exercise 2.1.5 Introduce Yourself
Debugging 2.1.6 Fix This Program!
Exercise 2.1.7 Vertical name
2.2 Variables and Types
Video 2.2.1 Variables and Types
Check for Understanding 2.2.2 Variables and Types
Example 2.2.3 Variables in Action
Example 2.2.4 Variable Types
Example 2.2.5 Variable Naming
Exercise 2.2.6 Make Some Variables!
Debugging 2.2.7 Undefined Variables
Badge 2.2.8 Variables Badge
2.3 User Input
Video 2.3.1 User Input
Check for Understanding 2.3.2 User Input
Example 2.3.3 Basic User Input
Example 2.3.4 Type Conversion
Example 2.3.5 Type Conversion, Part 2
Exercise 2.3.6 Hello <name>
Exercise 2.3.7 Age
2.4 Mathematical Operators
Video 2.4.1 Mathematical Operators
Check for Understanding 2.4.2 Mathematical Operators
Example 2.4.3 Operators and Integers
Example 2.4.4 Operator Precedence
Exercise 2.4.5 Add Parentheses
Example 2.4.6 Division in Python
Example 2.4.7 Operators and Floats
Exercise 2.4.8 Rectangle
2.5 String Operators
Video 2.5.1 String Operators
Check for Understanding 2.5.2 String Operators
Example 2.5.3 Operators and Strings
Debugging 2.5.4 Fix This Program
Example 2.5.5 Team Sizes
Exercise 2.5.6 Introduce Yourself, Part 2
Exercise 2.5.7 Rectangle, Part 2
Exercise 2.5.8 Rectangle, Part 3
Challenge 2.5.9 Recipe
2.6 Comments
Video 2.6.1 Comments
Check for Understanding 2.6.2 Comments
Example 2.6.3 Commented Program
Example 2.6.4 Trapezoid
Exercise 2.6.5 Add Comments!
2.7 Basic Python and Console Interaction Quiz
Unit Quiz 2.7.1 Basic Python and Console Interaction Quiz
Badge 2.7.2 Basic Python and Console Interaction Badge
3. Intro to Arduino
3.1 Welcome to Arduino!
Video 3.1.1 Intro to Arduino
Free Response 3.1.2 Explore an Arduino Project
Free Response 3.1.3 Arduino Memory Game
Video 3.1.4 Using Tinkercad
Notes 3.1.5 Sign Up on Tinkercad
Connection 3.1.6 Exploration: Tinkercad
Video 3.1.7 Exploration 1.1 Follow-up
Free Response 3.1.8 Background & Experience
Free Response 3.1.9 Goal Setting
3.2 Setting Up your Arduino
Video 3.2.1 Setting Up your Arduino
Connection 3.2.2 Exploration: Intro to Programming with Arduino
Video 3.2.3 Exploration 1.2 Follow-up
Exercise 3.2.4 LED Blink
Exercise 3.2.5 Long and Short LED Blink
Exercise 3.2.6 Morse Code
3.3 Comments & Pseudocode
Video 3.3.1 Comments & Pseudocode
Check for Understanding 3.3.2 Comments & Pseudocode
Notes 3.3.3 Blink LED with Comments
Free Response 3.3.4 Blinking in Pseudocode
Connection 3.3.5 Exploration: Analog vs. Digital
Video 3.3.6 Exploration 1.3 Follow-up
Exercise 3.3.7 LED at Many Brightness Values
Exercise 3.3.8 Opposite Blinking LEDs
3.4 Variables
Video 3.4.1 Variables
Check for Understanding 3.4.2 Variables
Notes 3.4.3 Variable Brightness
Free Response 3.4.4 Dim an LED
Video 3.4.5 Breadboards
Quiz 3.4.6 Breadboards
Notes 3.4.7 Variable Brightness with Breadboard
Connection 3.4.8 Exploration: Arduino Structure using Variables
Video 3.4.9 Exploration 1.4 Follow-up
Exercise 3.4.10 One Bright, One Fading
Exercise 3.4.11 Pulsing LED
3.5 Debugging
Video 3.5.1 Debugging
Connection 3.5.2 Exploration: Using the Serial Monitor
Video 3.5.3 Exploration 1.5 Follow-up
Free Response 3.5.4 Physical Debugging: LED
Free Response 3.5.5 Physical Debugging: LED and Potentiometer
Free Response 3.5.6 Debugging with Tools: LED
3.6 Intro to Arduino Quiz
Unit Quiz 3.6.1 Intro to Arduino Quiz
4. Conditionals
4.1 Booleans
Video 4.1.1 Booleans
Check for Understanding 4.1.2 Booleans
Example 4.1.3 Boolean Variables
Debugging 4.1.4 Fix This Program
Exercise 4.1.5 Plants
4.2 If Statements
Video 4.2.1 If Statements
Check for Understanding 4.2.2 If Statements
Example 4.2.3 Your First If Statement
Example 4.2.4 If/Else Statement
Debugging 4.2.5 Fix This Program
Exercise 4.2.6 Is It Raining?
Badge 4.2.7 Conditional Badge
4.3 Comparison Operators
Video 4.3.1 Comparison Operators
Check for Understanding 4.3.2 Comparison Operators
Example 4.3.3 Comparison Operators
Example 4.3.4 High Jump
Example 4.3.5 Roller Coaster
Exercise 4.3.6 Old Enough to Vote?
Exercise 4.3.7 Positive, Zero, or Negative?
Example 4.3.8 Age Group
Exercise 4.3.9 Table Reservation
Challenge 4.3.10 Transaction
4.4 Logical Operators
Video 4.4.1 Logical Operators
Check for Understanding 4.4.2 Logical Operators
Example 4.4.3 Logical Operators
Exercise 4.4.4 Administrators, Teachers, and Students
Exercise 4.4.5 Presidential Eligibility
Challenge 4.4.6 Presidential Eligibility- Extended
4.5 Floating Point Numbers and Rounding
Video 4.5.1 Floating Point Numbers and Rounding
Check for Understanding 4.5.2 Floating Point Numbers and Rounding
Example 4.5.3 Rounding Error
Exercise 4.5.4 Correct Portion
4.6 Conditionals Quiz
Unit Quiz 4.6.1 Conditionals Quiz
5. Looping
5.1 While Loops
Video 5.1.1 While Loops
Check for Understanding 5.1.2 While Loops
Example 5.1.3 Guess My Number
Example 5.1.4 Program Tracing
Example 5.1.5 Program Tracing, Part 2
Exercise 5.1.6 2 Through 20 Even
Exercise 5.1.7 Divisibility
5.2 For Loops
Video 5.2.1 For Loops
Check for Understanding 5.2.2 For Loops
Example 5.2.3 Print 10 Numbers
Example 5.2.4 1 Through 10, Part 2
Exercise 5.2.5 Counting 10 to 100 by Tens
Example 5.2.6 Running Total
Example 5.2.7 Running Total, Part 2
Exercise 5.2.8 Average Test Score
Exercise 5.2.9 How Many Names?
Badge 5.2.10 Loops Badge
Survey 5.2.11 Mindset Survey 2
5.3 Break and Continue
Video 5.3.1 Break and Continue
Check for Understanding 5.3.2 Break and Continue
Example 5.3.3 Break
Example 5.3.4 Continue
Example 5.3.5 Bike Frame Size
Example 5.3.6 Loop and a Half
Exercise 5.3.7 Higher/ Lower
Challenge 5.3.8 Higher / Lower 2.0
5.4 Nested Control Structures
Video 5.4.1 Nested Control Structures
Check for Understanding 5.4.2 Nested Control Structures
Example 5.4.3 Double For Loop
Example 5.4.4 Average Test Score, Part 2
Example 5.4.5 For Loop + While Loop
Exercise 5.4.6 Rolling Dice
Exercise 5.4.7 Categories
5.5 Looping Quiz
Unit Quiz 5.5.1 Looping Unit Test
6. Functions and Exceptions
6.1 Functions
Video 6.1.1 Functions
Check for Understanding 6.1.2 Functions
Example 6.1.3 Greeting
Example 6.1.4 Extended Greeting
Exercise 6.1.5 Weather
6.2 Functions and Parameters
Video 6.2.1 Functions and Parameters
Check for Understanding 6.2.2 Functions and Parameters
Example 6.2.3 Print a Value
Example 6.2.4 Name and Age
Exercise 6.2.5 Print Product
Exercise 6.2.6 Print Multiple Times
Example 6.2.7 Default Parameter Values
Exercise 6.2.8 Area of a Square with Default Parameters
6.3 Namespaces in Functions
Video 6.3.1 Namespaces in Functions
Check for Understanding 6.3.2 Namespaces in Functions
Example 6.3.3 Functions and Variables
Example 6.3.4 Functions and Variables, Part 2
Debugging 6.3.5 Fix This Program!
Exercise 6.3.6 Adding to a Value
Exercise 6.3.7 Add, Subtract, or Multiply
6.4 Functions and Return Values
Video 6.4.1 Functions and Return Values
Check for Understanding 6.4.2 Functions and Return Values
Example 6.4.3 Return 10
Exercise 6.4.4 Add One
Example 6.4.5 Negate
Example 6.4.6 Functions Calling Functions
Example 6.4.7 Function Calls As Parameters
Exercise 6.4.8 Sum Two Numbers
Exercise 6.4.9 Temperature Converter
Badge 6.4.10 Functions Badge
6.5 Exceptions
Video 6.5.1 Exceptions
Check for Understanding 6.5.2 Exceptions
Example 6.5.3 Enter a Number
Example 6.5.4 Enter Name and Age
Exercise 6.5.5 Temperature Converter, Part 2
Exercise 6.5.6 Enter a Positive Number
6.6 Functions Quiz
Unit Quiz 6.6.1 Functions and Exceptions Quiz
Badge 6.6.2 Control Flow Badge
7. Program Control with Arduino
7.1 Loops
Video 7.1.1 Loops
Check for Understanding 7.1.2 Loops
Notes 7.1.3 Pulsing LED with Loops
Notes 7.1.4 Light LED Based on Potentiometer
Free Response 7.1.5 LED Blink
Free Response 7.1.6 Alternating LED until Button Press
Connection 7.1.7 Exploration: Using Servo Motors
Video 7.1.8 Exploration 2.1 Follow-up
Exercise 7.1.9 Sweeping Servo
Exercise 7.1.10 Blinking Based on Potentiometer
7.2 If/Else Statements
Video 7.2.1 If/Else Statements
Check for Understanding 7.2.2 If/Else Statements
Notes 7.2.3 LED Brightness with Potentiometer
Free Response 7.2.4 Stoplight LEDs
Free Response 7.2.5 LED Brightness using Buttons
Connection 7.2.6 Exploration: Using Buttons to Control Code
Video 7.2.7 Exploration 2.2 Follow-up
Exercise 7.2.8 Servo Position by Button Press
Exercise 7.2.9 Servo Sweep with Reset
7.3 Arithmetic, Comparison, and Logical Operators
Video 7.3.1 Arithmetic, Comparison, and Logical Operators
Check for Understanding 7.3.2 Arithmetic, Comparison, and Logical Operators
Notes 7.3.3 Potentiometer with AND
Notes 7.3.4 Potentiometer with OR
Free Response 7.3.5 Potentiometer Controlling LED
Connection 7.3.6 Exploration: Ultrasonic Range Finder
Video 7.3.7 Exploration 2.3 Follow-up
Exercise 7.3.8 Distance Warning Lights
Exercise 7.3.9 Servo with Potentiometer
7.4 Functions
Video 7.4.1 Functions
Check for Understanding 7.4.2 Functions
Notes 7.4.3 Using Functions
Notes 7.4.4 Using Functions with Parameters
Free Response 7.4.5 Distance LEDs
Connection 7.4.6 Exploration: Using More Sensors
Video 7.4.7 Exploration 2.4 Follow-up
Exercise 7.4.8 Candy Dispensing System
Exercise 7.4.9 SOS
7.5 Using Motors
Connection 7.5.1 Exploration: Controlling Motors
Video 7.5.2 Exploration 2.5 Follow-up
Notes 7.5.3 Motors Example
Exercise 7.5.4 Driverless Car
Exercise 7.5.5 Car Simulation
Free Response 7.5.6 Choose an External Sensor to Investigate
7.6 Program Control with Arduino Quiz
Unit Quiz 7.6.1 Program Control with Arduino Quiz
8. Strings
8.1 Indexing
Video 8.1.1 Indexing
Check for Understanding 8.1.2 Indexing
Example 8.1.3 Characters in a String
Video 8.1.4 Unit Tests
Practice 8.1.5 Initials
Practice 8.1.6 Sandwich Sandwiches
8.2 Slicing
Video 8.2.1 Slicing
Check for Understanding 8.2.2 Slicing
Example 8.2.3 Groups of Characters
Example 8.2.4 String Collage
Example 8.2.5 Room Names
Practice 8.2.6 If You're Not First, You're Last
Practice 8.2.7 Part 1, Replace a Letter
Practice 8.2.8 Part 2, Replace a Letter
Badge 8.2.9 Slicing Badge
8.3 Immutability
Video 8.3.1 Immutability
Check for Understanding 8.3.2 Immutability
Example 8.3.3 String Immutability
Exercise 8.3.4 Find the Error
8.4 Strings and For Loops
Video 8.4.1 Strings and For Loops
Check for Understanding 8.4.2 Strings and For Loops
Example 8.4.3 The len Function
Practice 8.4.4 Length of User's Name
Example 8.4.5 String For Loop with Indices
Example 8.4.6 String For Loop with Characters
Exercise 8.4.7 Spelling Bee
Practice 8.4.8 Keeping Count
8.5 The in Keyword
Video 8.5.1 The in Keyword
Check for Understanding 8.5.2 The in Keyword
Example 8.5.3 Contains a Letter
Example 8.5.4 Contains a Substring
Practice 8.5.5 Contains a Vowel
8.6 String Methods
Video 8.6.1 String Methods
Check for Understanding 8.6.2 String Methods
Example 8.6.3 upper and lower
Practice 8.6.4 ENTHUSIASM!
Example 8.6.5 swapcase
Example 8.6.6 strip
Example 8.6.7 find
Practice 8.6.8 What's in a Name?
Practice 8.6.9 Part 1, Remove All From String
Exercise 8.6.10 Part 2, Remove All From String
Survey 8.6.11 Mindset Survey 3
8.7 Strings Quiz
Unit Quiz 8.7.1 Strings Quiz
Badge 8.7.2 Strings Badge
9. Creating and Altering Data Structures
9.1 Tuples
Video 9.1.1 Tuples
Check for Understanding 9.1.2 Tuples
Example 9.1.3 A Tuple Is a Sequence
Example 9.1.4 A Tuple is Heterogenous
Example 9.1.5 Tuples With a Single Element
Example 9.1.6 Concatenating Tuples
Exercise 9.1.7 Fix This Tuple
Practice 9.1.8 Citation
Practice 9.1.9 Diving Contest
Practice 9.1.10 Coordinate Pairs
9.2 Lists
Video 9.2.1 Lists
Check for Understanding 9.2.2 Lists
Example 9.2.3 A List Is Like a Mutable Tuple
Example 9.2.4 String <--> List
Practice 9.2.5 Spell It Out
Example 9.2.6 Splitting a String
Practice 9.2.7 Listed Greeting
Example 9.2.8 List of Tuples, Tuples of Lists
9.3 For Loops and Lists
Video 9.3.1 For Loops and Lists
Check for Understanding 9.3.2 For Loops and Lists
Example 9.3.3 For Loops and Lists
Example 9.3.4 For Loops and Lists, Part 2
Practice 9.3.5 Max In List
Practice 9.3.6 Owls
Practice 9.3.7 Exclamat!on Po!nts
Challenge 9.3.8 Word Ladder
Challenge 9.3.9 Owls, Part 2
9.4 List Methods
Video 9.4.1 List Methods
Check for Understanding 9.4.2 List Methods
Example 9.4.3 append and extend
Exercise 9.4.4 How Many Names?
Exercise 9.4.5 Five Numbers
Example 9.4.6 sort
Exercise 9.4.7 Librarian
Example 9.4.8 reverse
Example 9.4.9 count
Example 9.4.10 remove
Practice 9.4.11 Take a Thing Out, Sort It and Reverse It
Challenge 9.4.12 Librarian, Part 2
Badge 9.4.13 Lists Badge
9.5 Creating and Altering Data Structures Quiz
Unit Quiz 9.5.1 Creating and Altering Data Structures Quiz
10. Extending Data Structures
10.1 2d Lists
Video 10.1.1 2d Lists
Check for Understanding 10.1.2 2d Lists
Example 10.1.3 A List of Lists
Example 10.1.4 Grid
Example 10.1.5 2d Lists and Slices
Exercise 10.1.6 Checkerboard, v1
Exercise 10.1.7 Checkerboard, v2
Exercise 10.1.8 Checkerboard, v3
Challenge 10.1.9 Tic Tac Toe
10.2 List Comprehensions
Video 10.2.1 List Comprehensions
Check for Understanding 10.2.2 List Comprehensions
Example 10.2.3 List of Consecutive Numbers
Example 10.2.4 List of Squares
Exercise 10.2.5 Divisible by 3
Example 10.2.6 Digits of Pi
Example 10.2.7 List of Booleans
Exercise 10.2.8 Last Names
Exercise 10.2.9 Strings To Integers
Survey 10.2.10 Mindset Survey 4
10.3 Packing and Unpacking
Video 10.3.1 Packing and Unpacking
Check for Understanding 10.3.2 Packing and Unpacking
Example 10.3.3 Packing
Example 10.3.4 Unpacking
Example 10.3.5 Unpacking Parameters
Exercise 10.3.6 Coordinate Pair
Exercise 10.3.7 Slopes
Example 10.3.8 Swapping
Exercise 10.3.9 Full Name & Citation
Badge 10.3.10 Packing Badge
10.4 Dictionaries
Video 10.4.1 Dictionaries
Check for Understanding 10.4.2 Dictionaries
Example 10.4.3 Keys and Values
Example 10.4.4 The in Keyword
Exercise 10.4.5 Phone Book
Exercise 10.4.6 Word Counts
10.5 Equivalence vs. Identity
Video 10.5.1 Equivalence vs. Identity
Check for Understanding 10.5.2 Equivalence vs. Identity
Example 10.5.3 Equivalence vs. Identity - Mutables
Example 10.5.4 Equivalence vs. Identity - Immutables
Example 10.5.5 Identity and Parameters
Exercise 10.5.6 Swapping
Exercise 10.5.7 Word Counts, Part 2
10.6 Extending Data Structures Quiz
Unit Quiz 10.6.1 Extending Data Structures Quiz
Badge 10.6.2 Data Structures Badge
11. Project: Guess the Word
11.1 Project: Guess the Word
Demo 11.1.1 Guess the Word Demo
Exercise 11.1.2 Guess the Word, Part 1
Exercise 11.1.3 Guess the Word, Part 2
Exercise 11.1.4 Guess the Word, Part 3
Exercise 11.1.5 Guess the Word, Part 4
Badge 11.1.6 Guess the Word Badge
11.2 Intro to Computer Science in Python Completed
Badge 11.2.1 Intro to Computer Science in Python Badge
12. Advanced Arduino
12.1 Arduino Challenges
Video 12.1.1 Arduino Challenges: Extended Variable Types
Check for Understanding 12.1.2 Arduino Challenges: Extended Variable Types
Connection 12.1.3 Exploration: Advanced Arduino Programs
Video 12.1.4 Exploration 3.1 Follow-up
Exercise 12.1.5 Alter Blink Time
Challenge 12.1.6 Digital Watch, Pt 1
Challenge 12.1.7 Digital Watch, Pt 2
Challenge 12.1.8 Elevator
Free Response 12.1.9 Project Reflection
12.2 Explore a New Sensor
Notes 12.2.1 Explore a New Sensor: Overview
Connection 12.2.2 Exploration: Getting Started with a New Sensor
Free Response 12.2.3 Video/ Exploration
Free Response 12.2.4 Example Program
Video 12.2.5 How to add images
Free Response 12.2.6 Build an Exercise to Teach about your Sensor!
Free Response 12.2.7 Creating a Lesson: Reflection
12.3 Step-by-Step Arduino Project
Free Response 12.3.1 Research and Choose Project
Free Response 12.3.2 Create Updated Directions
Free Response 12.3.3 Step by Step Project Reflection
12.4 Final Project
Free Response 12.4.1 Project Brainstorm and Selection
Free Response 12.4.2 Build a Prototype
Free Response 12.4.3 Test and Improve your Project
Presentation 12.4.4 Present your Project
13. Final Exam
13.1 Final Exam
Midterm 13.1.1 Final Exam Pt 1: Multiple Choice