SlideShare una empresa de Scribd logo
1 de 60
Sensorand Actuator
Ueki Atsuro
Satoru Tokuhisa
2011.11.29
Parts
• Arduino UNO x1
• USB cable x1
• GROVE - Starter Bundle x 1pkg
※Please keep these parts until 12/20
Multi Sensory Communication
2
Additional Parts
• 3 axis Gyro x 1
• 3 axis Accelerometer x 1
• Sound Sensor x1
• Vibrator x1
• Rotary Angle Sensor x 1
Multi Sensory Communication
3
Download
• Source code
– http://dl.dropbox.com/u/326446/
msc/02/source.zip
Multi Sensory Communication
4
Reference
• GROVE system
– http://www.seeedstudio.com/wiki/GROVE_System
• Language Reference
– http://arduino.cc/en/Reference/HomePage
• Tutorial
– http://arduino.cc/en/Tutorial/HomePage
Multi Sensory Communication
5
Outline
• How to use Sensor
– Rotary Angle Sensor
– 3 axis Accelerometer
– 3 axis Gyro
• How to use Actuator
– Piezo Buzzer
– Vibrator
– Servo Morot
Multi Sensory Communication
6
Practice with GROVE
Multi Sensory Communication
7
GROVE StarterKit
Multi Sensory Communication
8
PackList
• Buttons X1
• LEDs X1
• Tilt X1
• Buzzer X1
• Rotary Angle Sensor X1
• Temperature Sensor (Analog) X1
9
Multi Sensory Communication
PackList
• Smart Relay X1
• Protoshield X1
• LCD1602 Baseshield + LCD X1
• Stem  Base Shield X1
• GROVE Cable X10
10
Multi Sensory Communication
Additional Parts
• 3 axis Gyro x 1
• 3 axis Accelerometer x 1
• Sound Sensor x1
• Vibrator x1
• Rotary Angle Sensor x 1
Multi Sensory Communication
11
Stem
Multi Sensory Communication
Analog Input
A0-A5
Digital Input /Output
D1- D13
A1
A0
A2
A3
A4
A5
D1D2D3D4D5D6
D7D8D9D10D11D13 D12
12
I2C
Review
Multi Sensory Communication
13
digitalWrite/analogWrite
Multi Sensory Communication
LED Twig
14
Stem
Multi Sensory Communication
D13
15
Hello World!
void setup() {
// initialize the digital pin as an output.
// Pin 13 has an LED connected on most Arduino boards:
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(13, HIGH); // set the LED on
delay(1000); // wait for a second
digitalWrite(13, LOW); // set the LED off
delay(1000); // wait for a second
}
16
Multi Sensory Communication
Change the BlinkInterval
void setup() {
// initialize the digital pin as an output.
// Pin 13 has an LED connected on most Arduino boards:
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(13, HIGH); // set the LED on
delay(100); // wait for a second
digitalWrite(13, LOW); // set the LED off
delay(100); // wait for a second
}
17
Multi Sensory Communication
Change the BlinkRatio
void setup() {
// initialize the digital pin as an output.
// Pin 13 has an LED connected on most Arduino boards:
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(13, HIGH); // set the LED on
delay(5); // wait for a second
digitalWrite(13, LOW); // set the LED off
delay(5); // wait for a second
}
18
Multi Sensory Communication
Change the BlinkRatio
void setup() {
// initialize the digital pin as an output.
// Pin 13 has an LED connected on most Arduino boards:
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(13, HIGH); // set the LED on
delay(1); // wait for a second
digitalWrite(13, LOW); // set the LED off
delay(9); // wait for a second
}
19
Multi Sensory Communication
Practice
• analogWrite(PWM)
• http://arduino.cc/en/Reference/AnalogWrite
20
Multi Sensory Communication
PWM
• PWM(Pulse Width Modulation)
D = τ/ T
D : duty cycle
τ: pulse
T : transition
Multi Sensory Communication
ex: 0.25(D) = 1(τ)/4(T)
Pulse
time
21
PWM
Multi Sensory Communication
Analog Input x 6
Digital Input and
Output x 14
3.3V
Ground
Ground
5V
Power Indicator
External Power
22
PWM~
3, 5, 6, 9, 10, 11
Stem
Multi Sensory Communication
D11
23
Practice
void setup() {
pinMode(11, OUTPUT); // 3, 5, 6, 9, 10, 11,
}
void loop() {
analogWrite(11, 255); // 0-255
}
• analogWrite
• http://arduino.cc/en/Reference/AnalogWrite
24
Multi Sensory Communication
Sensor
Multi Sensory Communication
25
Practice 01
Multi Sensory Communication
Potentiometer Twig
(Rotary angle sensor)
26
Stem
Multi Sensory Communication
A0
27
Arduino IDE
Multi Sensory Communication
Serial Monitor
Opens the serial monitor.
28
Practice 01
const int analogInPin = 0;
int sensorValue = 0;
void setup() {
Serial.begin(9600); // open the serial port at 9600 bps:
}
void loop() {
// read the analog in value:
sensorValue = analogRead(analogInPin);
Serial.println(sensorValue);
delay(1000);
}
29
Multi Sensory Communication
-Rotary Angle Sensor ->A0
-※Check the position of GND(Red)
Practice 01
• analogRead
• Description
• Reads the value from the specified analog pin.
• It will map input voltages between 0 and 5 volts into integer
values between 0 and 1023.
• Syntax
• analogRead(pin)
• Returns
• Int(0 to 1023)
30
Multi Sensory Communication
Practice 01
• Serial.begin
• Description
• Sets the data rate in bits per second (baud) for serial data
transmission.
• For communicating with the computer, use one of these
rates: 300, 1200, 2400, 4800, 9600, 14400, 19200, 28800,
38400, 57600, or 115200.
• Syntax
• Serial.begin(speed)
31
Multi Sensory Communication
Practice 01
• Serial.println
• Description
• Prints data to the serial port as human-readable ASCII text
followed by a carriage return character (ASCII 13, or 'r')
and a newline character (ASCII 10, or 'n').
• Syntax
• Serial.println(val)
Serial.println(val, format)
32
Multi Sensory Communication
Advance 01
33
Multi Sensory Communication
• How to check the present angle?
• The angular range is 300 degrees
• Hint
http://arduino.cc/en/Reference/Map
Advance 01
const int analogInPin = 0;
int sensorValue = 0;
void setup() {
Serial.begin(9600); // open the serial port at 9600 bps:
}
void loop() {
// read the analog in value:
sensorValue = analogRead(analogInPin);
sensorValue = map(sensorValue, 0, 1023, 0, 300);
Serial.println(sensorValue);
delay(1000);
}
34
Multi Sensory Communication
-Rotary Angle Sensor ->A0
-※Check the position of GND(Red)
Practice 02
Multi Sensory Communication
3 axis accelerometer
35
Stem
Multi Sensory Communication
I2c
36
Practice 02
• Source Code
• Practice02.txt
• Open Practice02.txt, copy the all, and paste it to Arduino IDE.
37
Multi Sensory Communication
Arduino IDE
Multi Sensory Communication
Serial Monitor
Opens the serial monitor.
38
Practice 02
• Wire Library
• This library allows you to communicate with I2C / TWI devices.
http://www.arduino.cc/en/Reference/Wire
• I2C
• Serial communication method developed by Pilips
• Advantages: it can handle multiple signals with only two signal
cables.
• Disadvantages: its program gets longer.
39
Multi Sensory Communication
Practice 03
Multi Sensory Communication
3 axis Gyro
40
Stem
Multi Sensory Communication
I2c
41
Practice 03
• Source Code
• Practice03.txt
• Open Practice03.txt, copy the all, and paste it to Arduino IDE.
42
Multi Sensory Communication
Actuator
Multi Sensory Communication
43
Practice 04
Multi Sensory Communication
knob
44
x
Servo motor
Stem
Multi Sensory Communication
45
To
knob
5V / GND to SERVO (RED / BROWN)
Digital 9 to SERVO(ORANGE)
Practice 04
• Source Code
• Files > Example > Servo > Knob
46
Multi Sensory Communication
Practice 04
#include <Servo.h>
Servo myservo; // create servo object to control a servo
int potpin = 0; // analog pin used to connect the potentiometer
int val; // variable to read the value from the analog pin
void setup()
{
myservo.attach(9); // attaches the servo on pin 9 to the servo object
}
void loop()
{
val = analogRead(potpin); // reads the value of the potentiometer (value between 0 and 1023)
val = map(val, 0, 1023, 0, 179);
// scale it to use it with the servo (value between 0 and 180)
myservo.write(val); // sets the servo position according to the scaled value
delay(15); // waits for the servo to get there
}
Multi Sensory Communication
47
Practice 05
Multi Sensory Communication
Vibrator
48
Stem
Multi Sensory Communication
49
Port 9 to vibrator
Practice 05
• Source Code
• Files > Example > 3.Analog > Fading
50
Multi Sensory Communication
Practice 06
Multi Sensory Communication
Vibrator
51
x
Mic
Stem
Multi Sensory Communication
52
Port 9 to vibrator
Analog 0
to mic
Practice 06
• Source Code
• Practice06.txt
• Open Practice06.txt, copy the all, and paste it to Arduino IDE.
53
Multi Sensory Communication
Practice 07
Multi Sensory Communication
Piezo Buzzer
54
Stem
Multi Sensory Communication
55
Port 8 to
Piezo Buzzer
Practice 07
• Source Code
• Files > Example > 2.Digital > toneMelody
56
Multi Sensory Communication
Practice 08
Multi Sensory Communication
Piezo Buzzer
57
knob
x
Stem
Multi Sensory Communication
58
Port 8 to
Piezo Buzzer
analog 0
to knob
Practice 08
• Source Code
• Files > Example > 2.Digital > tonePitchFollower
59
Multi Sensory Communication
Trial!!!
Multi Sensory Communication
60
accelerometer
x
Mic

Más contenido relacionado

La actualidad más candente

Physical prototyping lab3-serious_serial
Physical prototyping lab3-serious_serialPhysical prototyping lab3-serious_serial
Physical prototyping lab3-serious_serialTony Olsson.
 
Arduino cic3
Arduino cic3Arduino cic3
Arduino cic3Jeni Shah
 
Physical prototyping lab1-input_output (2)
Physical prototyping lab1-input_output (2)Physical prototyping lab1-input_output (2)
Physical prototyping lab1-input_output (2)Tony Olsson.
 
Arduino Programming Familiarization
Arduino Programming FamiliarizationArduino Programming Familiarization
Arduino Programming FamiliarizationAmit Kumer Podder
 
برمجة الأردوينو - اليوم الأول
برمجة الأردوينو - اليوم الأولبرمجة الأردوينو - اليوم الأول
برمجة الأردوينو - اليوم الأولAhmed Sakr
 
Arduino Robotics workshop Day1
Arduino Robotics workshop Day1Arduino Robotics workshop Day1
Arduino Robotics workshop Day1Sudar Muthu
 
Getting started with arduino workshop
Getting started with arduino workshopGetting started with arduino workshop
Getting started with arduino workshopSudar Muthu
 
LinnStrument : the ultimate open-source hacker instrument
LinnStrument : the ultimate open-source hacker instrumentLinnStrument : the ultimate open-source hacker instrument
LinnStrument : the ultimate open-source hacker instrumentGeert Bevin
 
Arduino windows remote control
Arduino windows remote controlArduino windows remote control
Arduino windows remote controlVilayatAli5
 
Cassiopeia Ltd - standard Arduino workshop
Cassiopeia Ltd - standard Arduino workshopCassiopeia Ltd - standard Arduino workshop
Cassiopeia Ltd - standard Arduino workshoptomtobback
 
Physical prototyping lab2-analog_digital
Physical prototyping lab2-analog_digitalPhysical prototyping lab2-analog_digital
Physical prototyping lab2-analog_digitalTony Olsson.
 
Embedded systems الانظمة المدمجة
Embedded systems  الانظمة المدمجة Embedded systems  الانظمة المدمجة
Embedded systems الانظمة المدمجة salih mahmod
 
How to measure frequency and duty cycle using arduino
How to measure frequency and duty cycle using  arduinoHow to measure frequency and duty cycle using  arduino
How to measure frequency and duty cycle using arduinoSagar Srivastav
 
Easy GPS Tracker using Arduino and Python
Easy GPS Tracker using Arduino and PythonEasy GPS Tracker using Arduino and Python
Easy GPS Tracker using Arduino and PythonNúria Vilanova
 
IOTC08 The Arduino Platform
IOTC08 The Arduino PlatformIOTC08 The Arduino Platform
IOTC08 The Arduino PlatformEoin Brazil
 
Introduction to arduino!
Introduction to arduino!Introduction to arduino!
Introduction to arduino!Makers of India
 

La actualidad más candente (20)

Simply arduino
Simply arduinoSimply arduino
Simply arduino
 
Physical prototyping lab3-serious_serial
Physical prototyping lab3-serious_serialPhysical prototyping lab3-serious_serial
Physical prototyping lab3-serious_serial
 
Introduction to Arduino
Introduction to ArduinoIntroduction to Arduino
Introduction to Arduino
 
Introduction to Arduino
Introduction to ArduinoIntroduction to Arduino
Introduction to Arduino
 
Lab2ppt
Lab2pptLab2ppt
Lab2ppt
 
Arduino cic3
Arduino cic3Arduino cic3
Arduino cic3
 
Physical prototyping lab1-input_output (2)
Physical prototyping lab1-input_output (2)Physical prototyping lab1-input_output (2)
Physical prototyping lab1-input_output (2)
 
Arduino Programming Familiarization
Arduino Programming FamiliarizationArduino Programming Familiarization
Arduino Programming Familiarization
 
برمجة الأردوينو - اليوم الأول
برمجة الأردوينو - اليوم الأولبرمجة الأردوينو - اليوم الأول
برمجة الأردوينو - اليوم الأول
 
Arduino Robotics workshop Day1
Arduino Robotics workshop Day1Arduino Robotics workshop Day1
Arduino Robotics workshop Day1
 
Getting started with arduino workshop
Getting started with arduino workshopGetting started with arduino workshop
Getting started with arduino workshop
 
LinnStrument : the ultimate open-source hacker instrument
LinnStrument : the ultimate open-source hacker instrumentLinnStrument : the ultimate open-source hacker instrument
LinnStrument : the ultimate open-source hacker instrument
 
Arduino windows remote control
Arduino windows remote controlArduino windows remote control
Arduino windows remote control
 
Cassiopeia Ltd - standard Arduino workshop
Cassiopeia Ltd - standard Arduino workshopCassiopeia Ltd - standard Arduino workshop
Cassiopeia Ltd - standard Arduino workshop
 
Physical prototyping lab2-analog_digital
Physical prototyping lab2-analog_digitalPhysical prototyping lab2-analog_digital
Physical prototyping lab2-analog_digital
 
Embedded systems الانظمة المدمجة
Embedded systems  الانظمة المدمجة Embedded systems  الانظمة المدمجة
Embedded systems الانظمة المدمجة
 
How to measure frequency and duty cycle using arduino
How to measure frequency and duty cycle using  arduinoHow to measure frequency and duty cycle using  arduino
How to measure frequency and duty cycle using arduino
 
Easy GPS Tracker using Arduino and Python
Easy GPS Tracker using Arduino and PythonEasy GPS Tracker using Arduino and Python
Easy GPS Tracker using Arduino and Python
 
IOTC08 The Arduino Platform
IOTC08 The Arduino PlatformIOTC08 The Arduino Platform
IOTC08 The Arduino Platform
 
Introduction to arduino!
Introduction to arduino!Introduction to arduino!
Introduction to arduino!
 

Similar a Multi Sensory Communication 2/2

Multi Sensory Communication 1/2
Multi Sensory Communication 1/2Multi Sensory Communication 1/2
Multi Sensory Communication 1/2Satoru Tokuhisa
 
Arduino Slides With Neopixels
Arduino Slides With NeopixelsArduino Slides With Neopixels
Arduino Slides With Neopixelssdcharle
 
Starting with Arduino
Starting with Arduino Starting with Arduino
Starting with Arduino MajdyShamasneh
 
Arduino projects &amp; tutorials
Arduino projects &amp; tutorialsArduino projects &amp; tutorials
Arduino projects &amp; tutorialsAnshu Pandey
 
Arduino Workshop Slides
Arduino Workshop SlidesArduino Workshop Slides
Arduino Workshop Slidesmkarlin14
 
4 IOT 18ISDE712 MODULE 4 IoT Physical Devices and End Point-Aurdino Uno.pdf
4 IOT 18ISDE712  MODULE 4 IoT Physical Devices and End Point-Aurdino  Uno.pdf4 IOT 18ISDE712  MODULE 4 IoT Physical Devices and End Point-Aurdino  Uno.pdf
4 IOT 18ISDE712 MODULE 4 IoT Physical Devices and End Point-Aurdino Uno.pdfJayanthi Kannan MK
 
Introduction to Arduino Microcontroller
Introduction to Arduino MicrocontrollerIntroduction to Arduino Microcontroller
Introduction to Arduino MicrocontrollerMujahid Hussain
 
Arduino Workshop
Arduino WorkshopArduino Workshop
Arduino Workshopatuline
 
Arduino Meetup with Sonar and 433Mhz Radios
Arduino Meetup with Sonar and 433Mhz RadiosArduino Meetup with Sonar and 433Mhz Radios
Arduino Meetup with Sonar and 433Mhz Radiosroadster43
 
teststststststLecture_3_2022_Arduino.pptx
teststststststLecture_3_2022_Arduino.pptxteststststststLecture_3_2022_Arduino.pptx
teststststststLecture_3_2022_Arduino.pptxethannguyen1618
 
Physical prototyping lab2-analog_digital
Physical prototyping lab2-analog_digitalPhysical prototyping lab2-analog_digital
Physical prototyping lab2-analog_digitalTony Olsson.
 
Introduction to Arduino and Circuits
Introduction to Arduino and CircuitsIntroduction to Arduino and Circuits
Introduction to Arduino and CircuitsJason Griffey
 
Syed IoT - module 5
Syed  IoT - module 5Syed  IoT - module 5
Syed IoT - module 5Syed Mustafa
 
INT4073 L07(Sensors and AcutTORS).pdf
INT4073 L07(Sensors and AcutTORS).pdfINT4073 L07(Sensors and AcutTORS).pdf
INT4073 L07(Sensors and AcutTORS).pdfMSingh88
 
Basics of arduino uno
Basics of arduino unoBasics of arduino uno
Basics of arduino unoRahat Sood
 

Similar a Multi Sensory Communication 2/2 (20)

Multi Sensory Communication 1/2
Multi Sensory Communication 1/2Multi Sensory Communication 1/2
Multi Sensory Communication 1/2
 
Arduino Slides With Neopixels
Arduino Slides With NeopixelsArduino Slides With Neopixels
Arduino Slides With Neopixels
 
Starting with Arduino
Starting with Arduino Starting with Arduino
Starting with Arduino
 
Arduino projects &amp; tutorials
Arduino projects &amp; tutorialsArduino projects &amp; tutorials
Arduino projects &amp; tutorials
 
Arduino Workshop Slides
Arduino Workshop SlidesArduino Workshop Slides
Arduino Workshop Slides
 
4 IOT 18ISDE712 MODULE 4 IoT Physical Devices and End Point-Aurdino Uno.pdf
4 IOT 18ISDE712  MODULE 4 IoT Physical Devices and End Point-Aurdino  Uno.pdf4 IOT 18ISDE712  MODULE 4 IoT Physical Devices and End Point-Aurdino  Uno.pdf
4 IOT 18ISDE712 MODULE 4 IoT Physical Devices and End Point-Aurdino Uno.pdf
 
Fun with arduino
Fun with arduinoFun with arduino
Fun with arduino
 
Arduino
ArduinoArduino
Arduino
 
Introduction to Arduino Microcontroller
Introduction to Arduino MicrocontrollerIntroduction to Arduino Microcontroller
Introduction to Arduino Microcontroller
 
Arduino Programming Basic
Arduino Programming BasicArduino Programming Basic
Arduino Programming Basic
 
Arduino Workshop
Arduino WorkshopArduino Workshop
Arduino Workshop
 
Arduino Meetup with Sonar and 433Mhz Radios
Arduino Meetup with Sonar and 433Mhz RadiosArduino Meetup with Sonar and 433Mhz Radios
Arduino Meetup with Sonar and 433Mhz Radios
 
teststststststLecture_3_2022_Arduino.pptx
teststststststLecture_3_2022_Arduino.pptxteststststststLecture_3_2022_Arduino.pptx
teststststststLecture_3_2022_Arduino.pptx
 
Physical prototyping lab2-analog_digital
Physical prototyping lab2-analog_digitalPhysical prototyping lab2-analog_digital
Physical prototyping lab2-analog_digital
 
Introduction to Arduino and Circuits
Introduction to Arduino and CircuitsIntroduction to Arduino and Circuits
Introduction to Arduino and Circuits
 
Syed IoT - module 5
Syed  IoT - module 5Syed  IoT - module 5
Syed IoT - module 5
 
INT4073 L07(Sensors and AcutTORS).pdf
INT4073 L07(Sensors and AcutTORS).pdfINT4073 L07(Sensors and AcutTORS).pdf
INT4073 L07(Sensors and AcutTORS).pdf
 
Basics of arduino uno
Basics of arduino unoBasics of arduino uno
Basics of arduino uno
 
Arduino intro.pptx
Arduino intro.pptxArduino intro.pptx
Arduino intro.pptx
 
How to use an Arduino
How to use an ArduinoHow to use an Arduino
How to use an Arduino
 

Más de Satoru Tokuhisa

多摩美術大学 エンタテイメントとデザインゼミ2 第12回
多摩美術大学 エンタテイメントとデザインゼミ2 第12回多摩美術大学 エンタテイメントとデザインゼミ2 第12回
多摩美術大学 エンタテイメントとデザインゼミ2 第12回Satoru Tokuhisa
 
多摩美術大学 エンタテイメントとデザインゼミ2 第10回
多摩美術大学 エンタテイメントとデザインゼミ2 第10回多摩美術大学 エンタテイメントとデザインゼミ2 第10回
多摩美術大学 エンタテイメントとデザインゼミ2 第10回Satoru Tokuhisa
 
多摩美術大学 エンタテイメントとデザインゼミ2 第7回
多摩美術大学 エンタテイメントとデザインゼミ2 第7回多摩美術大学 エンタテイメントとデザインゼミ2 第7回
多摩美術大学 エンタテイメントとデザインゼミ2 第7回Satoru Tokuhisa
 
多摩美術大学 エンタテイメントとデザインゼミ2 第6回
多摩美術大学 エンタテイメントとデザインゼミ2 第6回多摩美術大学 エンタテイメントとデザインゼミ2 第6回
多摩美術大学 エンタテイメントとデザインゼミ2 第6回Satoru Tokuhisa
 
多摩美術大学 エンタテイメントとデザインゼミ2 第5回
多摩美術大学 エンタテイメントとデザインゼミ2 第5回多摩美術大学 エンタテイメントとデザインゼミ2 第5回
多摩美術大学 エンタテイメントとデザインゼミ2 第5回Satoru Tokuhisa
 
多摩美術大学 エンタテイメントとデザインゼミ2 第3回
多摩美術大学 エンタテイメントとデザインゼミ2 第3回多摩美術大学 エンタテイメントとデザインゼミ2 第3回
多摩美術大学 エンタテイメントとデザインゼミ2 第3回Satoru Tokuhisa
 
多摩美術大学 エンタテイメントとデザインゼミ2 第2回
多摩美術大学 エンタテイメントとデザインゼミ2 第2回多摩美術大学 エンタテイメントとデザインゼミ2 第2回
多摩美術大学 エンタテイメントとデザインゼミ2 第2回Satoru Tokuhisa
 
多摩美術大学 エンタテイメントとデザインゼミ2 第1回
多摩美術大学 エンタテイメントとデザインゼミ2 第1回多摩美術大学 エンタテイメントとデザインゼミ2 第1回
多摩美術大学 エンタテイメントとデザインゼミ2 第1回Satoru Tokuhisa
 
女子美術大学メディアアート演習ⅡB 2013 Fall 第1回
女子美術大学メディアアート演習ⅡB 2013 Fall 第1回女子美術大学メディアアート演習ⅡB 2013 Fall 第1回
女子美術大学メディアアート演習ⅡB 2013 Fall 第1回Satoru Tokuhisa
 
女子美術大学メディアアート演習ⅡB 2013 Spring 第2回
女子美術大学メディアアート演習ⅡB 2013 Spring 第2回 女子美術大学メディアアート演習ⅡB 2013 Spring 第2回
女子美術大学メディアアート演習ⅡB 2013 Spring 第2回 Satoru Tokuhisa
 
女子美術大学メディアアート演習ⅡB 2013 Spring 第1回
女子美術大学メディアアート演習ⅡB 2013 Spring 第1回 女子美術大学メディアアート演習ⅡB 2013 Spring 第1回
女子美術大学メディアアート演習ⅡB 2013 Spring 第1回 Satoru Tokuhisa
 
A Series of Lectures on Service Design Vol. 1
A Series of Lectures on Service Design Vol. 1A Series of Lectures on Service Design Vol. 1
A Series of Lectures on Service Design Vol. 1Satoru Tokuhisa
 
女子美術大学メディアアート演習ⅡB 2012 Fall 第2回 1/2
 女子美術大学メディアアート演習ⅡB 2012 Fall 第2回 1/2 女子美術大学メディアアート演習ⅡB 2012 Fall 第2回 1/2
女子美術大学メディアアート演習ⅡB 2012 Fall 第2回 1/2Satoru Tokuhisa
 
女子美術大学メディアアート演習ⅡB 2012 Fall 第2回 2/2
 女子美術大学メディアアート演習ⅡB 2012 Fall 第2回 2/2 女子美術大学メディアアート演習ⅡB 2012 Fall 第2回 2/2
女子美術大学メディアアート演習ⅡB 2012 Fall 第2回 2/2Satoru Tokuhisa
 
女子美術大学メディアアート演習ⅡB 2012 Spring 第10回 2/2
女子美術大学メディアアート演習ⅡB 2012 Spring 第10回 2/2女子美術大学メディアアート演習ⅡB 2012 Spring 第10回 2/2
女子美術大学メディアアート演習ⅡB 2012 Spring 第10回 2/2Satoru Tokuhisa
 
女子美術大学メディアアート演習ⅡB 2012 Spring 第10回 1/2
女子美術大学メディアアート演習ⅡB  2012 Spring 第10回 1/2女子美術大学メディアアート演習ⅡB  2012 Spring 第10回 1/2
女子美術大学メディアアート演習ⅡB 2012 Spring 第10回 1/2Satoru Tokuhisa
 
女子美術大学メディアアート演習ⅡB 2012 Spring 第5回 2/2
女子美術大学メディアアート演習ⅡB 2012 Spring 第5回 2/2女子美術大学メディアアート演習ⅡB 2012 Spring 第5回 2/2
女子美術大学メディアアート演習ⅡB 2012 Spring 第5回 2/2Satoru Tokuhisa
 
女子美術大学メディアアート演習ⅡB 2012 Spring 第5回 1/2
女子美術大学メディアアート演習ⅡB 2012 Spring 第5回 1/2女子美術大学メディアアート演習ⅡB 2012 Spring 第5回 1/2
女子美術大学メディアアート演習ⅡB 2012 Spring 第5回 1/2Satoru Tokuhisa
 

Más de Satoru Tokuhisa (20)

多摩美術大学 エンタテイメントとデザインゼミ2 第12回
多摩美術大学 エンタテイメントとデザインゼミ2 第12回多摩美術大学 エンタテイメントとデザインゼミ2 第12回
多摩美術大学 エンタテイメントとデザインゼミ2 第12回
 
多摩美術大学 エンタテイメントとデザインゼミ2 第10回
多摩美術大学 エンタテイメントとデザインゼミ2 第10回多摩美術大学 エンタテイメントとデザインゼミ2 第10回
多摩美術大学 エンタテイメントとデザインゼミ2 第10回
 
多摩美術大学 エンタテイメントとデザインゼミ2 第7回
多摩美術大学 エンタテイメントとデザインゼミ2 第7回多摩美術大学 エンタテイメントとデザインゼミ2 第7回
多摩美術大学 エンタテイメントとデザインゼミ2 第7回
 
多摩美術大学 エンタテイメントとデザインゼミ2 第6回
多摩美術大学 エンタテイメントとデザインゼミ2 第6回多摩美術大学 エンタテイメントとデザインゼミ2 第6回
多摩美術大学 エンタテイメントとデザインゼミ2 第6回
 
多摩美術大学 エンタテイメントとデザインゼミ2 第5回
多摩美術大学 エンタテイメントとデザインゼミ2 第5回多摩美術大学 エンタテイメントとデザインゼミ2 第5回
多摩美術大学 エンタテイメントとデザインゼミ2 第5回
 
多摩美術大学 エンタテイメントとデザインゼミ2 第3回
多摩美術大学 エンタテイメントとデザインゼミ2 第3回多摩美術大学 エンタテイメントとデザインゼミ2 第3回
多摩美術大学 エンタテイメントとデザインゼミ2 第3回
 
多摩美術大学 エンタテイメントとデザインゼミ2 第2回
多摩美術大学 エンタテイメントとデザインゼミ2 第2回多摩美術大学 エンタテイメントとデザインゼミ2 第2回
多摩美術大学 エンタテイメントとデザインゼミ2 第2回
 
多摩美術大学 エンタテイメントとデザインゼミ2 第1回
多摩美術大学 エンタテイメントとデザインゼミ2 第1回多摩美術大学 エンタテイメントとデザインゼミ2 第1回
多摩美術大学 エンタテイメントとデザインゼミ2 第1回
 
女子美術大学メディアアート演習ⅡB 2013 Fall 第1回
女子美術大学メディアアート演習ⅡB 2013 Fall 第1回女子美術大学メディアアート演習ⅡB 2013 Fall 第1回
女子美術大学メディアアート演習ⅡB 2013 Fall 第1回
 
BOP Design Framework
BOP Design FrameworkBOP Design Framework
BOP Design Framework
 
女子美術大学メディアアート演習ⅡB 2013 Spring 第2回
女子美術大学メディアアート演習ⅡB 2013 Spring 第2回 女子美術大学メディアアート演習ⅡB 2013 Spring 第2回
女子美術大学メディアアート演習ⅡB 2013 Spring 第2回
 
女子美術大学メディアアート演習ⅡB 2013 Spring 第1回
女子美術大学メディアアート演習ⅡB 2013 Spring 第1回 女子美術大学メディアアート演習ⅡB 2013 Spring 第1回
女子美術大学メディアアート演習ⅡB 2013 Spring 第1回
 
A Series of Lectures on Service Design Vol. 1
A Series of Lectures on Service Design Vol. 1A Series of Lectures on Service Design Vol. 1
A Series of Lectures on Service Design Vol. 1
 
女子美術大学メディアアート演習ⅡB 2012 Fall 第2回 1/2
 女子美術大学メディアアート演習ⅡB 2012 Fall 第2回 1/2 女子美術大学メディアアート演習ⅡB 2012 Fall 第2回 1/2
女子美術大学メディアアート演習ⅡB 2012 Fall 第2回 1/2
 
女子美術大学メディアアート演習ⅡB 2012 Fall 第2回 2/2
 女子美術大学メディアアート演習ⅡB 2012 Fall 第2回 2/2 女子美術大学メディアアート演習ⅡB 2012 Fall 第2回 2/2
女子美術大学メディアアート演習ⅡB 2012 Fall 第2回 2/2
 
女子美術大学メディアアート演習ⅡB 2012 Spring 第10回 2/2
女子美術大学メディアアート演習ⅡB 2012 Spring 第10回 2/2女子美術大学メディアアート演習ⅡB 2012 Spring 第10回 2/2
女子美術大学メディアアート演習ⅡB 2012 Spring 第10回 2/2
 
女子美術大学メディアアート演習ⅡB 2012 Spring 第10回 1/2
女子美術大学メディアアート演習ⅡB  2012 Spring 第10回 1/2女子美術大学メディアアート演習ⅡB  2012 Spring 第10回 1/2
女子美術大学メディアアート演習ⅡB 2012 Spring 第10回 1/2
 
女子美術大学メディアアート演習ⅡB 2012 Spring 第5回 2/2
女子美術大学メディアアート演習ⅡB 2012 Spring 第5回 2/2女子美術大学メディアアート演習ⅡB 2012 Spring 第5回 2/2
女子美術大学メディアアート演習ⅡB 2012 Spring 第5回 2/2
 
女子美術大学メディアアート演習ⅡB 2012 Spring 第5回 1/2
女子美術大学メディアアート演習ⅡB 2012 Spring 第5回 1/2女子美術大学メディアアート演習ⅡB 2012 Spring 第5回 1/2
女子美術大学メディアアート演習ⅡB 2012 Spring 第5回 1/2
 
BOP Product Design
BOP Product DesignBOP Product Design
BOP Product Design
 

Último

Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...babafaisel
 
Booking open Available Pune Call Girls Nanded City 6297143586 Call Hot India...
Booking open Available Pune Call Girls Nanded City  6297143586 Call Hot India...Booking open Available Pune Call Girls Nanded City  6297143586 Call Hot India...
Booking open Available Pune Call Girls Nanded City 6297143586 Call Hot India...Call Girls in Nagpur High Profile
 
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵anilsa9823
 
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130Suhani Kapoor
 
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...Suhani Kapoor
 
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779Delhi Call girls
 
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...Call Girls in Nagpur High Profile
 
Design Inspiration for College by Slidesgo.pptx
Design Inspiration for College by Slidesgo.pptxDesign Inspiration for College by Slidesgo.pptx
Design Inspiration for College by Slidesgo.pptxTusharBahuguna2
 
DragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxDragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxmirandajeremy200221
 
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...home
 
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779Delhi Call girls
 
Nepali Escort Girl Gomti Nagar \ 9548273370 Indian Call Girls Service Lucknow...
Nepali Escort Girl Gomti Nagar \ 9548273370 Indian Call Girls Service Lucknow...Nepali Escort Girl Gomti Nagar \ 9548273370 Indian Call Girls Service Lucknow...
Nepali Escort Girl Gomti Nagar \ 9548273370 Indian Call Girls Service Lucknow...nagunakhan
 
(AISHA) Ambegaon Khurd Call Girls Just Call 7001035870 [ Cash on Delivery ] P...
(AISHA) Ambegaon Khurd Call Girls Just Call 7001035870 [ Cash on Delivery ] P...(AISHA) Ambegaon Khurd Call Girls Just Call 7001035870 [ Cash on Delivery ] P...
(AISHA) Ambegaon Khurd Call Girls Just Call 7001035870 [ Cash on Delivery ] P...ranjana rawat
 
VIP Kolkata Call Girl Gariahat 👉 8250192130 Available With Room
VIP Kolkata Call Girl Gariahat 👉 8250192130  Available With RoomVIP Kolkata Call Girl Gariahat 👉 8250192130  Available With Room
VIP Kolkata Call Girl Gariahat 👉 8250192130 Available With Roomdivyansh0kumar0
 
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai DouxDubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Douxkojalkojal131
 
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...Suhani Kapoor
 
Top Rated Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
Top Rated  Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...Top Rated  Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
Top Rated Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...Call Girls in Nagpur High Profile
 
NO1 Trending kala jadu Love Marriage Black Magic Punjab Powerful Black Magic ...
NO1 Trending kala jadu Love Marriage Black Magic Punjab Powerful Black Magic ...NO1 Trending kala jadu Love Marriage Black Magic Punjab Powerful Black Magic ...
NO1 Trending kala jadu Love Marriage Black Magic Punjab Powerful Black Magic ...Amil baba
 

Último (20)

Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
 
Booking open Available Pune Call Girls Nanded City 6297143586 Call Hot India...
Booking open Available Pune Call Girls Nanded City  6297143586 Call Hot India...Booking open Available Pune Call Girls Nanded City  6297143586 Call Hot India...
Booking open Available Pune Call Girls Nanded City 6297143586 Call Hot India...
 
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵
 
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130
 
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...
 
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
 
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
 
young call girls in Pandav nagar 🔝 9953056974 🔝 Delhi escort Service
young call girls in Pandav nagar 🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Pandav nagar 🔝 9953056974 🔝 Delhi escort Service
young call girls in Pandav nagar 🔝 9953056974 🔝 Delhi escort Service
 
Design Inspiration for College by Slidesgo.pptx
Design Inspiration for College by Slidesgo.pptxDesign Inspiration for College by Slidesgo.pptx
Design Inspiration for College by Slidesgo.pptx
 
DragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxDragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptx
 
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
 
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
 
Nepali Escort Girl Gomti Nagar \ 9548273370 Indian Call Girls Service Lucknow...
Nepali Escort Girl Gomti Nagar \ 9548273370 Indian Call Girls Service Lucknow...Nepali Escort Girl Gomti Nagar \ 9548273370 Indian Call Girls Service Lucknow...
Nepali Escort Girl Gomti Nagar \ 9548273370 Indian Call Girls Service Lucknow...
 
(AISHA) Ambegaon Khurd Call Girls Just Call 7001035870 [ Cash on Delivery ] P...
(AISHA) Ambegaon Khurd Call Girls Just Call 7001035870 [ Cash on Delivery ] P...(AISHA) Ambegaon Khurd Call Girls Just Call 7001035870 [ Cash on Delivery ] P...
(AISHA) Ambegaon Khurd Call Girls Just Call 7001035870 [ Cash on Delivery ] P...
 
VIP Kolkata Call Girl Gariahat 👉 8250192130 Available With Room
VIP Kolkata Call Girl Gariahat 👉 8250192130  Available With RoomVIP Kolkata Call Girl Gariahat 👉 8250192130  Available With Room
VIP Kolkata Call Girl Gariahat 👉 8250192130 Available With Room
 
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai DouxDubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
 
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...
 
B. Smith. (Architectural Portfolio.).pdf
B. Smith. (Architectural Portfolio.).pdfB. Smith. (Architectural Portfolio.).pdf
B. Smith. (Architectural Portfolio.).pdf
 
Top Rated Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
Top Rated  Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...Top Rated  Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
Top Rated Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
 
NO1 Trending kala jadu Love Marriage Black Magic Punjab Powerful Black Magic ...
NO1 Trending kala jadu Love Marriage Black Magic Punjab Powerful Black Magic ...NO1 Trending kala jadu Love Marriage Black Magic Punjab Powerful Black Magic ...
NO1 Trending kala jadu Love Marriage Black Magic Punjab Powerful Black Magic ...
 

Multi Sensory Communication 2/2

Notas del editor

  1. // is comment pinMode = Configures the specified pin to behave either as an input or an output. digitalWrite = Write a HIGH or a LOW value to a digital pin.
  2. Writes an analog value (PWM wave) to a pin.
  3. HighとLowをすばやく切りかえることで、 中間量の電流が流れているときと同じ状態を作ることができる。 http://monoist.atmarkit.co.jp/fembedded/h8/h8primer09/h8primer09a.html 1/10 = 0.1 D 9/10 = 0.9 D
  4. Writes an analog value (PWM wave) to a pin.
  5. The potentiometer twig produces analog output between 0 and Vcc (5V DC) on its SIG(D1) Pin. The D2 Pin is NC(not used). The angular range is 300 degrees with a linear change in value.
  6. Writes an analog value (PWM wave) to a pin.
  7. Writes an analog value (PWM wave) to a pin.
  8. 3 axis motion/orientation sensing For... Motion Detection Digital Still Camera: Image Stability
  9. I2C = serial communication method
  10. Magic spell motherboard, embedded system, cellphone, or other electronic device. Merits: it can handle multiple signals with only two signal cables. Demerits: its program becomes longer.
  11. Magic spell motherboard, embedded system, cellphone, or other electronic device. Merits: it can handle multiple signals with only two signal cables. Demerits: its program becomes longer.
  12. 3 axis angular velocity sensing
  13. 3 axis angular velocity sensing
  14. I2C = serial communication method
  15. Writes an analog value (PWM wave) to a pin.
  16. 3 axis angular velocity sensing
  17. I2C = serial communication method
  18. Writes an analog value (PWM wave) to a pin.
  19. 3 axis angular velocity sensing
  20. I2C = serial communication method
  21. Writes an analog value (PWM wave) to a pin.
  22. 3 axis angular velocity sensing
  23. I2C = serial communication method
  24. Writes an analog value (PWM wave) to a pin.
  25. 3 axis angular velocity sensing
  26. I2C = serial communication method
  27. Writes an analog value (PWM wave) to a pin.