김희승 임승한 IT 인재 양성 Arduino Programming OneScoreSung Han Lim.

Slides:



Advertisements
Similar presentations
Khaled A. Al-Utaibi Interfacing an LED The Light Emitting Diode (LED) Applications DC Characteristics & Operation Interfacing to.
Advertisements

Digital & Analog Inputs. Review Fundamental parts of an Arduino program are … Setting output types using pinMode. Declaring variables Can write a digital.
Youn-Hee Han, In-Seok Kang {yhhan, Laboratory of Intelligent Networks Advanced Technology Research Center Korea University of Technology.
ELCT 201 week 13 Analog ON/OFF control system conversion to Digital ON/OFF control system.
Intro to Programming and Microcontrollers. Activity Group into pairs and sit back-to-back. Pick one person who is going to draw. The other person will.
Finish your programs from last week STOPLIGHT CIRCUIT! You may need … – int – void setup() – void loop() – pinMode – digitalWrite – delay.
Basic Circuits – Lab 2 Arduino and Sensors Xmedia Spring 2011.
PROGRAMMING WITH ARDUINO. Arduino An open-source hardware platform based on an Atmel AVR 8-bit microcontroller and a C++ based IDE Over boards.
Basic Circuits – Lab 2 Arduino and Sensors
Microcontroller Hands-on Workshop #3 Ahmad Manshad New Mexico State University Institute of Electrical and Electronics Engineers November 7, 2009.
ProtoSnap Introduction to Arduino Casey Haskell, Pete Lewis, David Stillman, Jim Lindblom, Pete Dokter, Lindsay Levkoff, Trevor Zylstra.
Cascade switching of an LED EAS 199B Winter 2013.
Pulse Width Modulation (PWM). 100% Pulse Width Modulation (PWM) 0% On the chipKIT there are 490 periods per second. Use analogWrite(pin, value) to control.
Good LED Circuit 5V0 GND. What Voltage Does Meter See? Answer: 5 V.
LECTURE 2 – INPUTS THIS LECTURE WILL INTRODUCE HOW TO INPUT SIGNALS INTO AN ARDUINO.
Youn-Hee Han, In-Seok Kang {yhhan, Laboratory of Intelligent Networks Advanced Technology Research Center Korea University of Technology.
ARDUINO 1. Basics  Comments  /* * Blink * * The basic Arduino example. Turns on an LED on for one second, * then off for one second, and so on... We.
Arduino Circuits and Code. int ledPin = 9; void setup() { pinMode(ledPin, OUTPUT); } void loop() { digitalWrite(ledPin, LOW); delay(1000); digitalWrite(ledPin,
Youn-Hee Han, In-Seok Kang {yhhan, Laboratory of Intelligent Networks Advanced Technology Research Center Korea University of Technology.
ROBOTIC ARM 2 Wilmer Arellano © Hardware  Next slide shows sensor connection to analog pin 0 and Motor 1 connection. Lecture is licensed under.
A3144 SENSITIVE HALL-EFFECT SWITCHES & AH Linear Hall sensor
Arduino A free development system based on Atmel AVR 8 bit microcontrollers. LB8X Tom.
Arduino libraries Datatekniker Udvidet hardware/software.
Ubiquitous Computing Practice ( Humidity Sensor ) Youn-Hee Han, In-Seok Kang {yhhan, Laboratory of Intelligent Networks Advanced.
Autumn, 2012C.-S. Shieh, EC, KUAS, Taiwan1 智慧電子應用設計導論 (1/3) Sensors I Chin-Shiuh Shieh ( 謝欽旭 ) Department of Electronic.
Photoresistor resistance changes dramatically with light level living with the lab Using Photoresistors with an Arduino © 2011 LWTL faculty team.
Youn-Hee Han, In-Seok Kang {yhhan, Laboratory of Intelligent Networks Advanced Technology Research Center Korea University of Technology.
Robot Project by Ahmad Shtaiyat Supervised by Dr. Salem Al-Agtash.
Motor TYWu.
INTERNET OF EVERYTHING SDU 2016 Week 6. Getting Input from Sensors  Sensors give report on the world around it  Sensors convert physical input an electrical.
Microcontroller basics Embedded systems for mortals.
ENERGY CONSERVATION IN STREET LIGHTING SYSTEM PRESENTED BY, DINESH KUMAR.G PRASANTH.D RAJESH KANNA.R YOGESH.T Department of EEE Guided By, Mr.K.Rajesh.
Microcontroller basics Embedded systems for mortals.
Robotics Grant Agreement No LLP UK-LEONARDO-LMP Project acronym: CLEM Project title: Cloud services for E-Learning in Mechatronics Technology.
Programming in Arduino Materials:Arduino Board Casperelectronics Pre Pres. Notes Photos from workshop?
INTERNET OF EVERYTHING SDU 2016 Week 12. Remotely Controlling Devices  interact with almost any device that uses some form of remote control  TVs, audio.
LAB1 TYWU. Devices Dip Switch (4 Switches) Triple Output LED (RGB) –Common Cathode.
Introduction to Arduino A very basic intro to Arduino, the IDE and the Servos class.
Arduino + Bluetooth TYWu. Connection Arduino + Bluetooth Module.
ARDUINO 실습 과제 보 고서. PWM 은 아날로그 출력이라는 함수를 사용하게 되는데 이 출력에는 3, 5, 6, 9, 10, 11 번의 핀만 사용 가능. ( 숫자 옆 에 ~ 표시 )
Capstone Design Middle Evaluation Rover Song Kee Hong Jo Kyeong Jin.
Pulse-Width Modulation: Simulating variable DC output
ME 120: Arduino PWM Breathing LED Code: Implementation on Arduino ME 120 Mechanical and Materials Engineering Portland State University
Pulse Width Modulation Instructor Dr Matthew Khi Yi Kyaw.
Arduino Application: Speed control of small DC Motors
Hacking on Arduino George Patterson
physical computing .2 – Day 3
Introducing the Arduino Uno Presented by Dave Mawdsley, DACS Member, Linux SIG Member (wiring, programming and running a cute traffic light simulation)
Microcontroller basics
A3144 SENSITIVE HALL-EFFECT SWITCHES & AH Linear Hall sensor
Manual for Arduino Kit v1.0
Exploring lighting effects with LED’s and Arduino
Wireless Cue Light Project
Microcontroller basics
Cascade switching of an LED
Get Your Project Started with Arduino
Sensors with Arduino A Microcontroller.
Arduino.
Въведение в Arduino.
Arduino Basics Connect Arduino to USB port
Arduino Application: Speed control of small DC Motors
IoT Programming the Particle Photon.
Servos and Stepper Motors
CS-4540 Robotics - Lab 05 Switch inputs to the Arduino Uno
Introducing the Arduino Uno
Sensors and actuators Sensors Resistive sensors
SAURABH GINGADE.
Arduino程式範例.
Pulse-Width Modulation: Simulating variable DC output
Arduino Programming: “if” statements
Presentation transcript:

김희승 임승한 IT 인재 양성 Arduino Programming OneScoreSung Han Lim

Contents 1. 사물인터넷 알고 가기 2.Arduino 와 친해지기 -LED On/Off - 조도 센서 - 온도, 습도 센서 - 초음파 센서 3. Arduino 응용 -Bluetooth Car Control Project -Smart Home Control System Project

사물인터넷 알고 가기 Smart Camera Withings’ new device is a cute little camera with sensors to track what’s happening in your house.

사물인터넷 알고 가기 Gesture Control Armband 손과 팔의 움직임만으로 기기 제어

사물인터넷 알고 가기 Smart Watch

사물인터넷 알고 가기 Smart Watch

사물인터넷 알고 가기 Good Night Lamp

사물인터넷 알고 가기 Smart Chopsticks

Arduino 와 친해지기 LED On/Off 1 초 간격 LED On/Off 반복 const int ledPin = 2; void setup() { pinMode(ledPin, OUTPUT); } void loop() { digitalWrite(ledPin, HIGH); delay(1000); digitalWrite(ledPin, LOW); delay(1000); }

Arduino 와 친해지기 조도센서 일반적으로 빛의 변화 감지가 필요한 응용에 사용

Arduino 와 친해지기 const int ledPin = 3; const int photoResistorPin = A0; int photoResistorValue; int brightness; void setup() { Serial.begin(9600); } void loop() { photoResistorValue = analogRead(photoResistorPin); Serial.print("photoResistor Value : "); Serial.println(photoResistorValue); brightness = map(photoResistorValue,0,1023,0,100); Serial.print("brigntness : "); Serial.println(brightness); analogWrite(ledPin, brightness); }

Arduino 와 친해지기 온도 습도 센서

Arduino 와 친해지기 초음파 센서

Arduino 응용 Bluetooth Car Control Project

Arduino 응용 Bluetooth Car Control Project 1. Arduino Controlled Blutooth Car 2. menu item 2 3. menu item 3 4. menu item 4

Arduino 응용 Bluetooth Car Control Project ==Arduino Blutooth Car Contril== w. go forward s. go backward a. turn left d. turn right x. stop q. Exit

Arduino 응용 Bluetooth Car Control Project Onescore tistory 홈페이지 영상 참고

Arduino 응용 Smart Home Control System Project

Arduino 응용 Smart Home Control System Project 1. Led On Off 2. Bright & Servo Moter 3. Temperature / DC Moter 4. Intrusion Detection

Arduino 응용 Smart Home Control System Project Onescore tistory 홈페이지 영상 참고