Introduction to Mechatronics Women in Aeronautics and Astronautics (WIAA) Sponsored by Women in Engineering (WIE) Workshop Leaders: Elena Shrestha Rose.

Slides:



Advertisements
Similar presentations
Lecture 1 – Arduino Basics
Advertisements

Lab7: Introduction to Arduino
Anurag Dwivedi & Rudra Pratap Suman.  Open Source electronic prototyping platform based on flexible easy to use hardware and software.
Embedded Sumo 1T4 – 1T5 UTRA.
Re-programming the Simon Says with Arduino Linz Craig, Brian Huang.
Potentiometer Electric circuit Cell or Battery Resistor Switch Bulb Earth/Ground LED.
Intro to Arduino with LilyPad Make a MakerSpace, Artisan’s Asylum Linz Craig, Chris Taylor, Mike Hord & Joel Bartlett.
Chapter 1 Eng. Hazem W. Marar.  Arduino is an open-source single-board microcontroller using Atmel AVR processor and an on-board I/O support.  The Arduino.
How to Build a Digital-Physical System-Lab Assegid Kidané Fall 2014.
Introduction.
 Main Components:  Sensors  Micro controller  Motor drivers  Chasis.
Introduction to Arduino Prepared by R. Lamond.  “Arduino is an open-source electronics prototyping platform based on flexible, easy- to-use hardware.
Colorado Space Grant Consortium Gateway To Space ASEN 1400 / ASTR 2500 Class #12 Gateway To Space ASEN 1400 / ASTR 2500 Class #12 T-58.
Ballooning Bundle. What is a Microcontroller? Small computer with a processor core, memory and programmable input/output Continuously repeats software.
Microcontroller Hands-on Workshop #3 Ahmad Manshad New Mexico State University Institute of Electrical and Electronics Engineers November 7, 2009.
Daniel Pickem and Rowland O’Flaherty 12/04/2012 Mechatronics (ME 6405) Student Lecture On Arduinos *Some slides courtesy of Eoin Brazil
ProtoSnap Introduction to Arduino Casey Haskell, Pete Lewis, David Stillman, Jim Lindblom, Pete Dokter, Lindsay Levkoff, Trevor Zylstra.
Arduino. What is it? A open-source software suite and single-board microcontroller. Allows easy and affordable prototyping of microcontroller applications.
Introduction to the Arduino
Microcontroller Hands-on Workshop #4 Ahmad Manshad New Mexico State University Institute of Electrical and Electronics Engineers November 14, 2009.
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 and Linz Craig.
Open Sources OPERATING SYSTEMS. What is open sources?! product that which a company make for you and you can edit it free..
An-Najah National University Faculty of Engineering Department of Mechatronics Engineering Whiteboard Notes Tracking-Erasing System.
Microprocessors Tutorial 1: Arduino Basics
Electronics & Microcontrollers
1 - Remove LED from 13 and GND - Bring out your breadboard from HW#4 Arduino Overview:
SAMI MAKERSPACE MAKE: AN ELECTRONICS WORKSHOP. ARDUINO BASICS Credit to: Sparkfun and Linz Craig, Nick Poole, Prashanta Aryal, Theo Simpson, Tai Johnson,
Who Are You, Arduino? Er. Sahil Khanna
Microcontroller Hands-on Workshop #2 Ahmad Manshad New Mexico State University Institute of Electrical and Electronics Engineers October 31, 2009.
Microcontrollers, Microcomputers, and Microprocessors
Lecture 9: Introduction to Arduino Topics: Arduino Fundamentals, Bean Date: Mar 22, 2016.
Robotics Grant Agreement No LLP UK-LEONARDO-LMP Project acronym: CLEM Project title: Cloud services for E-Learning in Mechatronics Technology.
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
HW & SW Overview  What’s UNO  Hardware  Specification  Installing IDE  Programming  Compiling.
1 Microcontrollers. 2 Programmers work in the virtual world Machinery works in the physical world Microcontrollers connect the virtual and physical world.
Introduction to Arduino Microcontrollers (Death by Powerpoint)
Harpeth Hall Jan 2016 Introduction to Arduino Prepared for Harpeth Hall Winterim January 2016.
ARDUINO UNO The Arduino uno is a microcontroller board based on the ATmega328. It has 14 digital Input / Output pins (of which 6 can be used as PWM outputs),
Having fun with code, using Arduino in a middle school CS classroom
Arduino - Introduction
Arduino.
Getting Started: Building & Programming
By Rick Darby Sponsors: Geekspace Gwinnett The WorkSpot
Prototyping with Microcontrollers and Sensors
Microcontroller basics
Microcontroller basics
An Arduino Workshop A Microcontroller.
UCD ElecSoc Robotics Club 2017/2018
Arduino Part 1 Topics: Microcontrollers Programming Basics
Arduino - Introduction
Introduction to Arduino Microcontrollers
Introduction to Arduino Microcontrollers
Introduction to Arduinos
Roller Coaster Design Project
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.
Arduino 101 Credit(s):
Arduino Board.
Chapter 1 Introduction of Arduino
Arduino : Introduction & Programming
Aeroponic Engineering and Vertical Farming
Arduino Uno circuit basics
Arduino Board.
Arduino म्हणजे काय?.
Introduction to Arduinos
Introduction to arduino
Arduino程式範例.
Introduction to Arduino IDE and Software
Presentation transcript:

Introduction to Mechatronics Women in Aeronautics and Astronautics (WIAA) Sponsored by Women in Engineering (WIE) Workshop Leaders: Elena Shrestha Rose Weinstein

Workshop Outline What is Mechatronics? What can you do with an Arduino? Workshop structure Intro to C programming Understanding Arduino IDE Hands-on projects!

Workshop Goals Be comfortable with Arduino Uno Learn how to solder Learn about sensors and actuators HAVE FUN!

Introduction to Mechatronics What is Mechatronics? What is it used for? Robotics, Automotive, Drones, Defense, etc. Electronics Programming Mechanics Controls

Arduino Microcontroller What can you do with an Arduino?

Arduino Uno Power IN 7-12V USB Digital Pins Analog Pins RESET I2C SPI Interrupts Power Pins UART “Open-source prototyping platform” “worldwide community of makers - students, hobbyists, artists, programmers, and professionals”

Workshop Materials Arduino and USB cable M-F, M-M cables Push button Tower Pro micro servo LEDs and resistors Prototyping board and header pins Piezo buzzer Soldering equipment

Workshop Structure Makerspace-type structure – EGR0312: C programming & electronics – ADL: soldering – Work on any mini-project that interests you Projects are ordered based on difficulty Both beginner and intermediate levels available – Ask questions when stuck or want more information – Additional projects available online We want to help you start tinkering!!!

Intro to C programming What is C programming? What is it useful for? How does it compare to other programming languages?

Verify Upload New Open Save Intro to Arduino GUI

Analog vs. Digital HIGH, LOW digitalWrite(pinNumber, signal) analogWrite(pinNumber, signal); analogWrite(port, 255); digitalWrite(13, HIGH);

Syntax basics Void setup pinMode Comments Semicolons void setup(){ } void loop(){ } pinMode (pinNumber, INPUT/OUTPUT) Void loop // It’s very useful to comment your code

Let’s get started!