Completed
) pinMode
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Arduino Course for Beginners - Open-Source Electronics Platform
Automatically move to the next video in the Classroom when playback concludes
- 1 ) Course Introduction
- 2 ) Section 2: Foundation of Electronics
- 3 ) Electricity
- 4 ) Static Electricity
- 5 ) Current Electricity
- 6 ) Voltage
- 7 ) Current
- 8 ) Resistance
- 9 ) Ohm’s Law
- 10 ) Ohm’s Law Example
- 11 ) Resistances in Series and Parallel
- 12 ) Resistance Color Coding
- 13 ) Section 3: Intro to Arduino Board
- 14 ) What is Microcontroller and Microprocessor
- 15 ) What category Arduino falls into?
- 16 ) Different Types of Arduino Boards
- 17 ) About Arduino
- 18 ) Parts of Arduino Uno
- 19 ) Technical Specifications of Arduino Uno
- 20 ) What is IDE?
- 21 ) Downloading and Installing the official IDE
- 22 ) Preparing your computer
- 23 ) Testing the Arduino.
- 24 ) What if you don’t have an Arduino board?
- 25 ) Section 5: Before we move ahead
- 26 ) What is breadboard?
- 27 ) How to make connections in breadboard?
- 28 ) Some safety instructions and Do’s and Don’ts
- 29 ) Input & Output
- 30 ) Analog & Digital
- 31 ) Bit & Byte
- 32 ) Section 6: Arduino Programming
- 33 ) Introduction
- 34 ) The First Step into Programming
- 35 ) Bare minimum structure of an Arduino Program
- 36 ) Comments
- 37 ) White Spaces and Case Sensitivity
- 38 ) pinMode
- 39 ) digitalWrite and delay
- 40 ) Camel casing
- 41 ) What are variables and data types
- 42 ) Int data type
- 43 ) Arithmetic operators
- 44 ) Incrementing and Decrementing our variables
- 45 ) Float data type
- 46 ) Bool/Boolean data type
- 47 ) Byte data type
- 48 ) Char data type
- 49 ) Conclusion
- 50 ) What is Scope? Global and Local Variables
- 51 ) What are Qualifiers, starting with const qualifier
- 52 ) Alternative to const qualifier: #define
- 53 ) Static Qualifier
- 54 ) What are comparison operators?
- 55 ) What are Logical Operators?
- 56 ) Section 6.3 Control Structures
- 57 ) if statement
- 58 ) else statement
- 59 ) A joke :P
- 60 ) if - else Simulation
- 61 ) Introduction to loop control structures
- 62 ) For loop
- 63 ) While loop
- 64 ) do…while loop
- 65 ) break
- 66 ) continue
- 67 ) return
- 68 ) switch..case
- 69 ) Arrays
- 70 ) Strings
- 71 ) What are functions?
- 72 ) Create your own functions
- 73 ) digitalRead & digitalWrite
- 74 ) analogRead and Analog to Digital Converter (ADC)
- 75 ) analogWrite and Pulse Width Modulation (PWM)
- 76 ) What are Libraries?
- 77 ) How to add Libraries in Arduino IDE
- 78 ) What next?