Complete Arduino Course, Electronics + 15 Projects
Published 1/2025
MP4 | Video: h264, 1920x1080 | Audio: AAC, 44.1 KHz
Language: English | Size: 6.41 GB | Duration: 10h 13m
Published 1/2025
MP4 | Video: h264, 1920x1080 | Audio: AAC, 44.1 KHz
Language: English | Size: 6.41 GB | Duration: 10h 13m
Learn Arduino from Scratch: Complete Course + 15 Projects
What you'll learn
Arduino Programming
Electronic components
Project creation
Use of sensors
Requirements
No prior knowledge is required
Description
Enough with the courses that show you sketches, and leave you with more questions than answers! With this mega complete course on Arduino from scratch, you will learn everything you need to step into the world of electronics, circuits, and Arduino.How many times has it happened to you? That you search for information on how to create a project with Arduino, and hundreds of resources pop up, but none explain how or why the project works.Or maybe you are new to this world of electronics, and you want to know how to work with Arduino, but can't find a guide to help you learn incrementally.That ends today!I present to you, the best Arduino course in Spanish to date. In this course, we start from scratch. And when I say zero, I really mean from zero.We begin by explaining some fundamentals that are necessary to create projects, such as the operation of the pins on Arduino, operation of electronic components, and even, we break down the sketch that is created whenever we create a new file from the Arduino IDE, in order to analyze it and test what happens if lines of code are missing.In addition to being a course focused on learning to create projects, we also focus on programming, since, although the goal of the course is not for you to become an expert programmer, programming is a fundamental component that will allow you to create increasingly complex projects. It's like an additional toolbox that you need to learn how to use.In many of the projects, we will start by creating projects on the Tinkercad platform, so you won't have to worry about having the necessary hardware to create the projects, and you won't have to worry about burning the circuits, definitely a great option if you are just starting out.Throughout the course, we will create multiple projects that will turn you into a maker in every sense of the word, from simple ones to more complex ones.In total, we will create more than 15 Projects with Arduino, all explained step by step.Some of the topics we will cover in the course are:Programming basics with ArduinoDecision statementsDigital pinsAnalog pinsUsing sensorsUsing electronic componentsArraysMatricesLEDsPotentiometersLoopsPhotoresistorsUsing Tinkercad to create simulationsand a long etc.What are you waiting for to become a maker with Arduino? I'll see you in the course.
Overview
Section 1: Introduction
Lecture 1 What is Arduino
Lecture 2 Types of Arduino boards and characteristics of UNO
Lecture 3 Installing Arduino IDE
Lecture 4 Connecting our Arduino
Lecture 5 Connecting a generic Arduino board
Lecture 6 How to recognize a CH340G chip
Lecture 7 Uploading our first Sketch
Lecture 8 Thinkercad Program
Section 2: Hello Arduino!
Lecture 9 What are void setup and void loop
Lecture 10 What are comments
Lecture 11 Everything you need to know about Variables
Lecture 12 What is a method and how to invoke it
Lecture 13 Declaring methods
Lecture 14 Parameters of a method
Lecture 15 Returning data from methods
Lecture 16 Method overloading
Lecture 17 Digital Outputs
Lecture 18 Digital Inputs and example
Lecture 19 PWM Outputs
Lecture 20 Analog Inputs and example
Lecture 21 The Serial Class
Section 3: Project - Hello LED!
Lecture 22 The LED Component
Lecture 23 The pinMode method
Lecture 24 The digitalWrite method
Lecture 25 The delay method
Lecture 26 Integrating an LED into the project
Lecture 27 Ohm's Law
Lecture 28 Calculating the value of a resistor
Lecture 29 Adding a resistor to the project
Lecture 30 Additional Notes on the Project
Section 4: The Test Board, Protoboard or Breadboard
Lecture 31 Get to know the Protoboard
Lecture 32 Hello LED project on Protoboard
Section 5: Project - Light reactive LED
Lecture 33 The photoresistor component
Lecture 34 The analogRead method
Lecture 35 What is a voltage divider
Lecture 36 Adding a voltage divider
Lecture 37 Integrating the LED
Lecture 38 The map method
Lecture 39 Physical project
Section 6: Project - Create a Mood lamp
Lecture 40 The RGB component
Lecture 41 Integrating an RGB LED with Arduino
Lecture 42 The analogWrite method
Lecture 43 Testing the RGB LED in physical form
Lecture 44 Creating an Ambient Lamp - Introduction
Lecture 45 Creating an Ambient Lamp - Connection Diagram
Lecture 46 Creating an Ambient Lamp - Circuit Assembly
Lecture 47 Creating an Ambient Lamp - Arduino Sketch
Section 7: Project - Changing the colors of an RGB LED in real time with potentiometers
Lecture 48 The potentiometer component
Lecture 49 Demo - Increasing the brightness of an LED with a potentiometer
Lecture 50 Changing a regular LED to an RGB LED
Lecture 51 Connection and Physical Demonstration of the project
Section 8: Conditional Structures
Lecture 52 Boolean Expressions
Lecture 53 Boolean Variables
Lecture 54 Not Operator
Lecture 55 Equality and Inequality Operators
Lecture 56 Logical Operators
Lecture 57 Relational Operators
Lecture 58 The If decision structure
Lecture 59 Nested Ifs
Lecture 60 The Switch decision structure
Section 9: Project - Turning on an LED with a Push Button
Lecture 61 The Push Button component
Lecture 62 The digitalRead method
Lecture 63 Learning to turn on an LED with the Push Button
Lecture 64 Correcting floating LEDs with Pull Up and Pull Down configurations
Section 10: Project - Creating an Electric Piano with Buttons and a Buzzer
Lecture 65 The Buzzer Component
Lecture 66 Creating the project in Thinkercad
Lecture 67 Creating the physical project - Introduction and Components
Lecture 68 Creating the physical project - Connection Diagram
Lecture 69 Creating the physical project - Physical Connection
Lecture 70 Creating the physical project - Writing the sketch and testing the project
Section 11: The While Control Loop with Arduino
Lecture 71 Explanation of the While loop
Lecture 72 Calibrating the values of a photoresistor with the While loop
Lecture 73 Physical connection and testing the project
Section 12: The For Control Loop with Arduino
Lecture 74 Explanation of the For loop
Lecture 75 Creating a project without the For loop
Lecture 76 Simplifying the code with a For loop
Lecture 77 Integrating a potentiometer into the project
Lecture 78 Physical connection and testing the project
Section 13: Arrays in Arduino
Lecture 79 Explanation of arrays
Lecture 80 Another way to declare an array, integrating with For loop
Lecture 81 Issues in the Knight Rider project, and correction with arrays
Section 14: LED Bar Project
Lecture 82 Modifying the Sketch and functionality
Section 15: Project - Binary Clock
Lecture 83 Introduction and Necessary Components
Lecture 84 Connection Diagram
Lecture 85 Physical Connection of the Components
Lecture 86 Sketch Programming
Section 16: Project - Electronic Piano with Arrays
Lecture 87 Electronic Piano Project with Arrays
Section 17: Two-dimensional Arrays
Lecture 88 What are they and how to declare them
Lecture 89 Traversing a two-dimensional array - Algorithm
Lecture 90 Traversing a two-dimensional array - Algorithm implementation
Section 18: Project - LED Matrix
Lecture 91 Creating the project
Lecture 92 Turning on all LEDs
Lecture 93 Creating patterns with For loops
Lecture 94 Creating patterns with two-dimensional arrays
Lecture 95 Displaying letters in LED Matrix
Section 19: Project - Keypad for validating PIN
Lecture 96 The byte data type
Lecture 97 The keypad component
Lecture 98 Creating the project
Lecture 99 Physical assembly and demonstration
Section 20: Project - Intruder Detector
Lecture 100 Introduction and Components
Lecture 101 Diagram
Lecture 102 Circuit Assembly
Lecture 103 Sketch Coding
Section 21: Project - Weather Station
Lecture 104 Introduction and components
Lecture 105 Connection diagram
Lecture 106 Circuit Assembly
Lecture 107 Sketch Programming
Lecture 108 Adding an LCD Display Shield - Connection
Lecture 109 Adding an LCD Display Shield - Sketch
Section 22: Project - Distance meter with the HC-SR04 sensor and LED display
Lecture 110 Project - Distance meter with the HC-SR04 sensor and LED display
Electronics Students,Electronics enthusiasts,Aspiring makers,Developers looking to create IoT solutions