ICTWays workshop “Creativity and imagination in the classroom: Arduino and its application samples” 528103-LLP-1-2012-1-PT-COMENIUS-CNW 13-04-2015.

Slides:



Advertisements
Similar presentations
Wireless Cue Light Project
Advertisements

Making Electronic Fashion Welcome Pink Team!. Etiquette Creative Girls Technology Arts.
EMS1EP Lecture 6 Digital Inputs
EMS1EP Lecture 8 Pulse Width Modulation (PWM)
Electrical team Arduino tutorial I BY: JOSHUA arduini
Lab7: Introduction to Arduino
Anurag Dwivedi & Rudra Pratap Suman.  Open Source electronic prototyping platform based on flexible easy to use hardware and software.
What is Arduino?  Arduino is a ATMEL 168 micro-controller kit designed specially for small projects  User friendly IDE(Integrated Development Environment)
Embedded Sumo 1T4 – 1T5 UTRA.
Panasonic EVE-KC2F2024B 24 pulses per revolution 6mm diameter flattened output shaft output type: quadrature (incremental) minimum life: 15,000 rotations.
Intel Galileo Gen 2 & Grove Seeed Starter Kit Gen 1
By Solid State Workshop. ● A microcontroller is an integrated circuit that is programmed to do a specific task. ● Microcontrollers are really just “mini-computers”.
Living with the lab Introduction to Arduino Programming arduino.cc Gerald Recktenwald Portland State University
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,
1 Arduino Board: Arduino UNO Arduino Programing Environment: Arduino 0022
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.
Basic Circuits – Lab 2 Arduino and Sensors Xmedia Spring 2011.
Embedded Programming and Robotics
ARDUINO PROGRAMMING Working with the Arduino microcontroller.
Arduino Part 1 Topics: Microcontrollers Programming Basics: structure and variables Digital Output Analog to Digital Conversion.
Sam Dodge Mentored by Dr. Tom Sharp Electronics System.
Open and Closed Loops Standard Grade Computing Studies.
Ballooning Bundle. What is a Microcontroller? Small computer with a processor core, memory and programmable input/output Continuously repeats software.
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
Cascade switching of an LED EAS 199B Winter 2013.
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.
Code The Arduino Environment.
Microprocessors Tutorial 1: Arduino Basics
Getting Started With the Arduino Uno
1 - Remove LED from 13 and GND - Bring out your breadboard from HW#4 Arduino Overview:
Microcontroller Hands-on Workshop #2 Ahmad Manshad New Mexico State University Institute of Electrical and Electronics Engineers October 31, 2009.
C# SERIAL COMMUNICATION TEMPERATURE CONTROL WITH ARDUINO KAAN EREN
1 Introduction to Haptics Introduction to the Hapkit board Allison M. Okamura Stanford University.
Bdps 2 Lecture 2. Circuits and Ohm's Law For resistive circuits.
Introduction to Arduino Microcontrollers...and how they can be used in Amateur Radio Andrew Rohne, AC8JO October 13, 2011.
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 Transistor. 2 Transistors are used to turn components on and off They come in all different shapes and sizes.
1 Microcontrollers. 2 Programmers work in the virtual world Machinery works in the physical world Microcontrollers connect the virtual and physical world.
Arduino.
Prototyping with Microcontrollers and Sensors
Dr. Kyung Eun Park Summer 2017
Val Manes Department of Math & Computer Science
UTA010 : Engineering Design – II
Get Your Project Started with Arduino
Arduino Part 1 Topics: Microcontrollers Programming Basics
Arduino Uno and sensors
How to avoid catching things on fire.
Arduino and Grove LET’S START.
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 Arduino? By James Tedder.
FeMaidens Programming
Arduino 101 Credit(s):
using the Arduino to make LEDs flash
Welcome to Digital Electronics using the Arduino Board
Topics: Programming Constructs: loops & conditionals Digital Input
CTY SAR FCPS Shawn Lupoli, Elliot Tan
CTY SAR FCPS Shawn Lupoli, Elliot Tan
UNIT 5 Analog signals.
Lab #1: Getting Started.
Arduino Uno circuit basics
Introduction to Arduinos
Arduino程式範例.
Interrupts.
Presentation transcript:

ICTWays workshop “Creativity and imagination in the classroom: Arduino and its application samples” LLP PT-COMENIUS-CNW

LLP PT-COMENIUS-CNW Confidencial © 2014 TECNALIA 2 EXAMPLES

LLP PT-COMENIUS-CNW Confidencial © 2014 TECNALIA 3 HACK EEG

LLP PT-COMENIUS-CNW Confidencial © 2014 TECNALIA 4  Development of a bio signal capturing device  Real time transmission to a central server  Arduino FIO  xBee  Three sensors: Pulse, Humidity, Temperature TRANSCREATIVA ++=

LLP PT-COMENIUS-CNW Confidencial © 2014 TECNALIA 5 ELECTRONICS 101

LLP PT-COMENIUS-CNW Confidencial © 2014 TECNALIA 6

7 DIGITAL1/0 ANALOG(IN) POWER SOURCE

LLP PT-COMENIUS-CNW Confidencial © 2014 TECNALIA 8

9 For everything else…

LLP PT-COMENIUS-CNW Confidencial © 2014 TECNALIA 10 ARDUINO IDE

LLP PT-COMENIUS-CNW Confidencial © 2014 TECNALIA 11  IDE: integrated development environment  Check for no errors in code  Load code to board

LLP PT-COMENIUS-CNW Confidencial © 2014 TECNALIA 12 CONNECTION

LLP PT-COMENIUS-CNW Confidencial © 2014 TECNALIA 13 CODE  SETUP & LOOP  SETUP: Setup pins and tell the Arduino to start serial communication with computer  LOOP: the things that the board does repeatedly

LLP PT-COMENIUS-CNW Confidencial © 2014 TECNALIA 14 PRACTICE

LLP PT-COMENIUS-CNW Confidencial © 2014 TECNALIA 15  TEMPERATURE  Set the circuit (mind the polarity!)  Load code  Check it works

LLP PT-COMENIUS-CNW Confidencial © 2014 TECNALIA 16  PRESSURE  Setting: more complex  Code: use temperature code, having in account that it is no necessary to transform the input  Load and check

LLP PT-COMENIUS-CNW Confidencial © 2014 TECNALIA 17  LED WHEN THINGS HAPPEN  Use the same code as in the previous practice  Modify code  When it passes value 512, light up the LED  Use IF sentence:  if (valor>512) { digitalWrite (pinled, HIGH);}  Switch off LED?

THANK YOU