FeMaidens Programming

Slides:



Advertisements
Similar presentations
Lab7: Introduction to Arduino
Advertisements

ABSTRACT The goal of this project was to create a more realistic and interactive appliance interface for a Usability Science class here at Union. Usability.
Living with the Lab Using Your Arduino, Breadboard and Multimeter EAS 199A Fall 2011 Work in teams of two!
Copyright 2014 Kenneth M. Chipps Ph.D. Network Management Using Sensors to Monitor Network Equipment Rooms Last Update
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.
1 Arduino Board: Arduino UNO Arduino Programing Environment: Arduino 0022
 Main Components:  Sensors  Micro controller  Motor drivers  Chasis.
Working with Arduino: Lesson #1: Getting Acquainted with the Kit EGN1007.
Arduino Part 1 Topics: Microcontrollers Programming Basics: structure and variables Digital Output Analog to Digital Conversion.
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.
Motherboard (Main board)
MICRO CONTROLLER MODULE 1. Learning Objectives Name some gadgets that use microcontrollers. Define a microcontroller. Differentiate between a computer.
Arduino. What is it? A open-source software suite and single-board microcontroller. Allows easy and affordable prototyping of microcontroller applications.
Overview What is Arduino? What is it used for? How to get started Demonstration Questions are welcome at any time.
An-Najah National University Faculty of Engineering Department of Mechatronics Engineering Whiteboard Notes Tracking-Erasing System.
Arduino Case Andrew Fawcett DESN 204.
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
Parts of a Computer. Keyboard: The input device that you use to type letters, numbers, and symbols into a computer.
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. 
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
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.
Arduino Week 3 Lab ECE 1020 Prof. Ahmadi. Objective Data acquisition (DAQ) is the process of measuring an electrical or physical phenomenon such as voltage,
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
Arduino.
Arduino Part 1 Topics: Microcontrollers
ROBOTICS.
Introduction of Embedded C and demo programs
European Robotic LABoratory
RASPBERRY PI WORKSHOP.
Prototyping with Microcontrollers and Sensors
Dr. Kyung Eun Park Summer 2017
Microcontroller basics
Introduction to the Arduino
Why Won’t My Arduino Work?
Arduino & its hardware interfacing
UTA010 : Engineering Design – II
An Arduino Workshop A Microcontroller.
Welcome to Arduino A Microcontroller.
Get Your Project Started with Arduino
Arduino Development for Beginners
Arduino Part 1 Topics: Microcontrollers Programming Basics
INC 161 , CPE 100 Computer Programming
Introduction to Arduino Microcontrollers
Introduction to Arduino Microcontrollers
Lighting LEDs with a RASPBERRY PI
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.
Visual Instructions.
What is Arduino? By James Tedder.
"You don't need anyone's permission to make something great
Working with Arduino: Lesson #1: Getting Acquainted with the Kit
Welcome to Digital Electronics using the Arduino Board
Introducing the Arduino Uno
Dave Mawdsley, DACS Member, Linux SIG January 16, 2013
Chapter 1 Introduction of Arduino
All About Serial.
Actuators and acting electrical signal digital signal.
Having fun with Arduino
Aeroponic Engineering and Vertical Farming
Arduino Leonardo Setup
Lab #1: Getting Started.
Introduction to Arduino
Interrupts.
Presentation transcript:

FeMaidens Programming 2017-2018 Arduino FeMaidens Programming 2017-2018

What is an Arduino?

It is a microcontroller that receives inputs and drives outputs easily. Microcontroller =small computer on a single integrated circuit (system on a chip) Inputs include sensors; outputs include screen/monitor, light Purpose: LED

Important components of the arduino: •Circuit board (Arduino UNO version R3) •USB cable A to B The USB cable A to B allows you to load your program/code from your computer to the arduino You plug the wire into the metal USB port on the top left of the picture of the arduino

How do you program an arduino?

Programming Arduino: An arduino can be programmed using the Arduino IDE. https://create.arduino.cc/editor/ ← takes you to the Arduino web editor. Arduinos are programmed in a language known as C++, which is different from Java Each arduino program involves two parts: Setup: The part of the program which is only run once at the beginning. This is used to set up the arduino so that it can run the rest of the program. Loop: The part of the program that is run infinitely. This is the main part of the arduino program. All methods for the arduino are in the arduino “API”