Arduino Leonardo Setup

Slides:



Advertisements
Similar presentations
Lab7: Introduction to Arduino
Advertisements

How to use Arduino By: Andrew Hoffmaster.
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.
1 Arduino Board: Arduino UNO Arduino Programing Environment: Arduino 0022
 Main Components:  Sensors  Micro controller  Motor drivers  Chasis.
Intel Do-It-Yourself Challenge Hello World with the Arduino IDE Nicolas Vailliet Intel.
Arduino Part 1 Topics: Microcontrollers Programming Basics: structure and variables Digital Output Analog to Digital Conversion.
Step 1: Right click, “My computer” select properties, Select Hardware >Device Manager > Other Device > USB Serial Converter, then Right Click and select.
Part 1 Using the ARM board And start working with C Tutorial 5 and 6
Github & Arduino How To: Post On Github How To: Download from Github How To: Upload Code Downloaded from Github to Arduino Tommy Sanchez EE400D Spring.
Intro to the Arduino Topics: The Arduino Digital IO
Arduino. What is it? A open-source software suite and single-board microcontroller. Allows easy and affordable prototyping of microcontroller applications.
Programming the Geiger Counter Board 1. Arduino Files Go to and download the latest Arduino.
Getting Started With the Arduino Uno
Autumn, 2012C.-S. Shieh, EC, KUAS, Taiwan1 智慧電子應用設計導論 (1/3) Arduino Development Environment Chin-Shiuh Shieh ( 謝欽旭 ) Department.
Arduino “Getting Started” Instructor : Dr Matthew Miss Khin Yi Kyaw
Istituto Tecnico Industriale A.Monaco EURLAB European Robotic LABoratory HOW TO Transmit and RECEIVE Datas.
Introducing the Arduino Uno Presented by Dave Mawdsley, DACS Member, Linux SIG Member (wiring, programming and running a cute traffic light simulation)
Having fun with code, using Arduino in a middle school CS classroom
After Construction Name: Per #:.
Arduino Part 1 Topics: Microcontrollers
Embedded Systems Intro to the Arduino
Getting Started: Building & Programming
Step 1 - Installing TStatSpec Download the TStatSpec software from customer.honeywell.com.  The files will need to be extracted in a new folder.  
European Robotic LABoratory
By Rick Darby Sponsors: Geekspace Gwinnett The WorkSpot
Obstacle avoiding robot { pixel }
Scrolling LCD using Arduino.
Dr. Kyung Eun Park Summer 2017
Programming and Debugging with the Dragon and JTAG
Lab 1: Using NIOS II processor for code execution on FPGA
Downloading Arduino FOR WINDOWS.
Arduino is an open-source platform for building electronics projects
Introduction to the Arduino
Why Won’t My Arduino Work?
Automatic human detector garbage can.
An Arduino Workshop A Microcontroller.
Welcome to Arduino A Microcontroller.
Get Your Project Started with Arduino
Arduino Development for Beginners

Scoutbotics Robot Testing
Arduino Part 1 Topics: Microcontrollers Programming Basics
Introduction to Arduino Microcontrollers
Arduino and Design of Embedded Applications
Arduino and Grove LET’S START.
Roller Coaster Design Project
مقدمة في الاردنيو د فضل الاكوع.
How to Fix a “Scanner Failure” Message Error when Copying, Scanning, or Faxing?
Intro to the Arduino Topics: The Arduino Digital IO
Welcome to Digital Electronics using the Arduino Board
Introducing the Arduino Uno
Banyule Coding Club: Learn Arduino Richard Counsel Malcolm Macleod Watsonia Library - June 2018 Reference materials here ->
Programming Micro Controllers
Intro to the Arduino by Someet Singh
Intro to Micro Controllers
Manual Robotics ..
CTY SAR FCPS Shawn Lupoli, Elliot Tan
CTY SAR FCPS Shawn Lupoli, Elliot Tan
Arduino Motor Lab Inspired by NYU ITP project
CTY SAR FCPS Shawn Lupoli, Elliot Tan
Aeroponic Engineering and Vertical Farming
Downloading Arduino FOR MAC.
Lab #1: Getting Started.
Arduino Uno circuit basics
Introduction to Arduino
Arduino म्हणजे काय?.
Arduino and Grove LET’S START.
Introduction to arduino
Introduction to Arduino IDE and Software
Presentation transcript:

Arduino Leonardo Setup CTY SAR FCPS Shawn Lupoli, Elliot Tan

Hardware Arduino Leonardo Boards Microcontroller board based on ATmega32u4 20 digital input/output pins Built-in Micro USB connection Powered via USB connection OR with external power supply

Hardware Arduino Uno Boards Microcontroller board based on ATmega32u4 20 digital input/output pins Built-in Micro USB connection Powered via USB connection OR with external power supply

Hardware EITHER WILL WORK!!! But in programming, (within the IDE), pick the right board!!

Two ways to access the IDE!! As of 1/1/17 https://create.arduino.cc/ Web/cloud based Still has issues (as of 2/20/17), but not bad Normal download Which ever way you want is up to you!!

Downloading Software I swear this changes every week. If anything on the next page (about installing is critically wrong, let us know)

Downloading Software Arduino IDE (v 1.0.5) Download from: http://arduino.cc/en/Main/Software Find “Arduino IDE” Select “WINDOWS ZIP” and install Open arduino.exe, and then select “Extract All” Extract to the D: drive so that Arduino.exe will not be wiped during computer shut down After extraction of arduino.exe, install the USB drivers arduino-1.0.5-r2 -> drivers - > run “dpinst-amd64.exe”

Interacting with IDE How to communicate with hardware? IDE Contains With the Arduino IDE IDE Contains Text editor Message area Text console Toolbar with buttons for common functions (e.g. Serial Monitor) Series of menus

Sketches Sketches are programming files written for Arduino Saved with file extension .ino Console displays error messages and other information Toolbar buttons allow compiling, uploading, creating, opening and saving of sketches Can also open Serial Monitor, which can be used for debugging

Uploading to Arduino Board Plug in Arduino and open Arduino IDE Select Tools  Board  Arduino Leonardo OR UNO Select Tools  Port  COM # To Check COM #, go to Device Manager  Ports (COM & LPT) Select Files  Example  01. Basics  Blink Select Sketch  Verify/Compile Code Upload Blink to Arduino (Check Console) On the board, RX and TX LEDs start blinking Successful upload: L LED blinks every second

Troubleshooting Make sure to press the “Upload” button If COM port does not appear  unplug cable and try again If Upload fails  press reset button when “Uploading…” appears Questions?