Arduino - Introduction

Slides:



Advertisements
Similar presentations
Electrical team Arduino tutorial I BY: JOSHUA arduini
Advertisements

Lab7: Introduction to Arduino
Embedded Sumo 1T4 – 1T5 UTRA.
Re-programming the Simon Says with Arduino Linz Craig, Brian Huang.
Intro to Arduino with LilyPad Make a MakerSpace, Artisan’s Asylum Linz Craig, Chris Taylor, Mike Hord & Joel Bartlett.
Introduction.
ProtoSnap Introduction to Arduino Casey Haskell, Pete Lewis, David Stillman, Jim Lindblom, Pete Dokter, Lindsay Levkoff, Trevor Zylstra.
Introduction to the Arduino
Franz Duran INTRODUCTION TO A RDUINO PROGRAMMING & INTERFACING Engr. Franz Duran, MEP-ECE RapidSignal Electronics.
L ILY P AD T RAINING C ENTENNIAL E LEMENTARY 2012 Material by Linz Craig Revision by Sarah Bloms Additional images by Modkit & Adam Meyer.
Microcontroller Hands-on Workshop #2 Ahmad Manshad New Mexico State University Institute of Electrical and Electronics Engineers October 31, 2009.
Introduction to Arduino A very basic intro to Arduino, the IDE and the Servos class.
Arduino “Getting Started” Instructor : Dr Matthew Miss Khin Yi Kyaw
ME 120: Arduino Programming Arduino Programming Part 1 ME 120 Mechanical and Materials Engineering Portland State University
Introduction to Mechatronics Women in Aeronautics and Astronautics (WIAA) Sponsored by Women in Engineering (WIE) Workshop Leaders: Elena Shrestha Rose.
1 Microcontrollers. 2 Programmers work in the virtual world Machinery works in the physical world Microcontrollers connect the virtual and physical world.
CSE 341 Project : Ultrasonic Radar PRESENTED BY: NAME : AKIFA TASNEEM ID : SECTION: 02 1.
1 Introduction to Coding. 2 Example Codes A lot of example codes are given with Arduino IDE A code can often be based on a previous example rather than.
Harpeth Hall Jan 2016 Introduction to Arduino Prepared for Harpeth Hall Winterim January 2016.
The Internet of Things: Using the Arduino to Teach Coding
Having fun with code, using Arduino in a middle school CS classroom
Arduino.
Getting Started: Building & Programming
By Rick Darby Sponsors: Geekspace Gwinnett The WorkSpot
Obstacle avoiding robot { pixel }
Microcontroller basics
Home automation using Arduino & ‘PIR sensor’
Microcontroller basics
Automatic human detector garbage can.
UTA010 : Engineering Design – II
An Arduino Workshop A Microcontroller.
Welcome to Arduino A Microcontroller.
Get Your Project Started with Arduino
Arduino Development for Beginners
UCD ElecSoc Robotics Club 2017/2018
Arduino Part 1 Topics: Microcontrollers Programming Basics
Lecture 2-2: Arduino Programming
Arduino.
Arduino - Introduction
Arduino Uno and sensors
Introduction to Arduino Microcontrollers
Introduction to Arduino Microcontrollers
How to avoid catching things on fire.
Arduino and Grove LET’S START.
Roller Coaster Design Project
Introduction to Arduinos
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.
What is an Arduino ? Open Source electronic prototyping platform based on flexible easy to use hardware and software.
What is Arduino? By James Tedder.
Create a paper craft for any object that makes a sound
Arduino 101 Credit(s):
"You don't need anyone's permission to make something great
Welcome to Digital Electronics using the Arduino Board
Banyule Coding Club: Learn Arduino Richard Counsel Malcolm Macleod Watsonia Library - June 2018 Reference materials here ->
Arduino : Introduction & Programming
Teacher’s Note (do not include in student packet/slide show)
Manual Robotics ..
CTY SAR FCPS Shawn Lupoli, Elliot Tan
I/O Programming with Arduino
Aeroponic Engineering and Vertical Farming
Arduino Leonardo Setup
Lab #1: Getting Started.
Arduino Uno circuit basics
Introduction to Arduino
Arduino and Grove LET’S START.
Introduction to Arduinos
Model Blimp Design Competition Programming Workshop by Youth College (International) / VTC May
Introduction to arduino
Arduino程式範例.
Introduction to Arduino IDE and Software
Presentation transcript:

Arduino - Introduction VSV Breda Airshow 2017 MakAIRsjop

Introduction Robert Haccou Royal Netherlands Air Force Electrical Engineer Engineer BPE Avionics Royal Netherlands Air Force Main support-base, Woensdrecht Airbase MakAIRsjop Innovation centre AIR (Ambition - Innovation – Results)

What is Arduino? Development board Programmable micro processor (Microcontroller) (Digital) Electronics Open source Read inputs, control outputs!

What can you do with Arduino? Read inputs A finger on a button Light on a sensor Temperature in a room Data over communication bus Or a Twitter message More! And turn it into an output Turning on a LED Activating a motor Text on a display Calculating / Processing Publishing something online More!

Your first Arduino project! Turn a LED ON and OFF (Output) Can become anything… Another time! More in’s and out’s… Another time! With Arduino!

But, how? Wiring on the breadboard! Programming the Arduino! Testing!

1. Wiring the LED! LED may be on any of the digital IO’s illustrated on the top of the Arduino) Please note!: The LED must be wired with the long leg to the Arduino!

2. Programming Start Arduino IDE Make a new sketch Go to: File  New

2. Programming Select the right board Select the right port Go to: Tools  Board  Arduino/Genuino Uno Select the right port Go to: Tools  Port  (Your com port)

2. Programming Now we can start coding! Make a variable ‘LED’ for your pin number! int LED = 9;

2. Programming Now we can start coding! Initialize your pin as an INPUT or as an OUTPUT. Use the function ‘pinMode’ pinMode(LED,OUTPUT);

2. Programming Now we can start coding! Use the function ‘digitalWrite’ to write a HIGH or LOW signal the LED go ON and OFF. digitalWrite(LED, HIGH); digitalWrite(LED, LOW);

2. Programming Now we can start coding! Use the function ‘delay’ to do nothing for a period of times in miliseconds delay(1000); delays for 1second.

3. TESTING: Time to upload

3. TESTING DOES IT WORK!? IF (YES) Yay! You made your first Arduino Project! IF (NO) No problem, let us help you!

Questions?