Having fun with Arduino

Slides:



Advertisements
Similar presentations
PIC Programming with Logicator
Advertisements

Getting your Arduino to Work: Microsoft Windows 1.Install Arduino programming environment 2.Install Arduino Uno driver 3.Make sure you can download a program.
New Human Computer Interfaces Amnon Dekel HUJI – CSE, Spring 2007 Class 3 March
Arduino. Arduino is a tool for making computers that can sense and control more of the physical world than your desktop computer. It's an open-source.
How to Build a Digital-Physical System-Lab Assegid Kidané Fall 2014.
Introduction.
Embedded Programming and Robotics
Ch4 Electronic Components Circuit/Schematic Symbols.
Microcontroller Hands-on Workshop #3 Ahmad Manshad New Mexico State University Institute of Electrical and Electronics Engineers November 7, 2009.
Arduino. What is it? A open-source software suite and single-board microcontroller. Allows easy and affordable prototyping of microcontroller applications.
Franz Duran INTRODUCTION TO A RDUINO PROGRAMMING & INTERFACING Engr. Franz Duran, MEP-ECE RapidSignal Electronics.
Tweaking Your Simon Adding a photoresistor and changing code Instruction by Pete Lewis.
Jim Ng 15/1/2014 CENG4480 TUTORIAL 1. ABOUT ME Current MPhil Student supervised by Prof. Mak You can find me at Rm116 in SHB
Power Source? Conducting Path? Load? Switch?. Review Question 1 Which part of the 4 parts of a circuit is the Black Button on the EV3 Brick? A) Power.
1 Mezzanine Ware (Pty) Ltd © 2014 Installing\Uninstalling the Mezzanine Helium Android application.
1 - Remove LED from 13 and GND - Bring out your breadboard from HW#4 Arduino Overview:
Basic Stamp OEM module By Wilmer Arellano. 2  The BASIC Stamp 2 OEM is a discreet component version of the BS2 which may be purchased in kit form. 
INTERNET OF EVERYTHING SDU 2016 Week 4. Simple Digital and Analog Inputs  The Arduino’s ability to sense digital and analog inputs allows it to respond.
Microcontroller basics Embedded systems for mortals.
Basic Stamp OEM module By Wilmer Arellano. 2  The BASIC Stamp 2 OEM is a discreet component version of the BS2 which may be purchased in kit form. 
Arduino “Getting Started” Instructor : Dr Matthew Miss Khin Yi Kyaw
Electronic Instrumentation Project 204 Project Name: Light Level Monitor Student #1: Name ID Student #2: Name ID Student #3: Name ID.
Partners: Zayira Vasquez Frantz St Valliere Lucy Lin.
1 Microcontrollers. 2 Programmers work in the virtual world Machinery works in the physical world Microcontrollers connect the virtual and physical world.
Having fun with code, using Arduino in a middle school CS classroom
Arduino - Introduction
Arduino.
Making a 24hr Timer.
Embedded Systems Intro to the Arduino
Smart Newton Car By: Hui Zhu.
Build on a Breadboard Simulator
European Robotic LABoratory
By Rick Darby Sponsors: Geekspace Gwinnett The WorkSpot
Overview What is Arduino? What is it used for? How to get started
Assist. Prof. Rassim Suliyev - SDU 2017
Prototyping with Microcontrollers and Sensors
Microcontroller basics
The EV3 Electronics Circuit
Downloading Arduino FOR WINDOWS.
Microcontroller basics
Arduino is an open-source platform for building electronics projects
Introduction to the Arduino
Why Won’t My Arduino Work?
Overview What is Arduino? What is it used for? How to get started
Welcome to Arduino A Microcontroller.
Arduino Development for Beginners
Introduction to Handshaking Communication with SSC-32U
Introduction to Arduino Microcontrollers
Introduction to Arduino Microcontrollers
Lighting LEDs with a RASPBERRY PI
fischertechnik® RoboPro Software for Gateway To Technology® RoboPro
Arduino and Grove LET’S START.
ARDUINO     What is an Arduino? Features 14 Digital I/O pins 6 Analogue inputs 6 PWM pins USB serial 16MHz Clock speed 32KB Flash memory 2KB SRAM.
Visual Instructions.
What is Arduino? By James Tedder.
FeMaidens Programming
Welcome to Digital Electronics using the Arduino Board
Exploring Computer Science Lesson 6-5
Banyule Coding Club: Learn Arduino Richard Counsel Malcolm Macleod Watsonia Library - June 2018 Reference materials here ->
Programming Micro Controllers
Teacher’s Note (do not include in student packet/slide show)
Arduino Part 4 Let there be more light.
Intro to Micro Controllers
Aeroponic Engineering and Vertical Farming
LEGO Education - Mindstorms EV3 - Computer/control center – The Brick
Arduino Leonardo Setup
Lab #1: Getting Started.
Introduction to Arduino
Intro to Arduino Part 2 The Breadboard
Arduino and Grove LET’S START.
Presentation transcript:

Having fun with Arduino

What is Arduino Arduino is a generic name for a family of microcontrollers. A microcontroller (mcu) is a simple computer that can read information from sensors and send electric power to actuators, e.g. LED lamps, LCD screens, buzzers, motors etc.

Sensors A sensor is an electric component that measures a physical property and translate the value to voltage for the mcu to process, e.g distance, light, gas, tilt etc.

First program – Blinking a LED A control system is made of: MCU, sensors, actuators, wires, resistors and breadboard all connected together. A computer program is loaded into the MCU memory to control all the components.

How to connect? – step 1 Take a LED and plug it into two holes on the breadboard as shown in the picture. Pay attention that the LED has on long leg and the other is shorter.

How to connect? – step 2 Take a wire and plug one end in a pin header marked by GND on the Arduino MCU (bottom of the picture). Connect the other end of the wire to a hole on the breadboard near the shoter LED leg

How to connect? – step 3 Take a resistor and plug one end near the LED longer leg, and the other end at some hole on the breadboard

How to connect? – step 4 Take a wire and plug one end in a pin header marked by 7 on the Arduino MCU. Connect the other end of the wire to a hole on the breadboard near the resistor

How to connect? – step 5 Connect a USB cable to the Arduino MCU on one side and to a USB port on the computer

Loading the program Open the Arduino IDE Click the link on the web site and copy the lines of code In the Arduino IDE click CTRL+A, than click DELETE Paste the copied lines of code into the empty IDE screen

Loading the program Goto Tools menu and select board On the popup menu select Arduino Genuino/UNO

Loading the program Goto Tools menu and select port On the popup menu select a COM with Arduino Genuino/UNO

Loading the program Click the right pointing arrow on the icon bar Wait until the loading complete message appears

Eureka!!! If all went OK, the LED is blinking