SlideShare a Scribd company logo
IoT
Internet of Things
rainmaker_ho # 12515
Agenda
 Arduino
 Raspberry Pi
 Breadboard
 Sensors
 Azure IoT Suite
2
Arduino
3
Arduino
IDE
 setup & loop  14 數位 Pin
 6 模擬輸入
4
Led
如何接
 短腳接負極 GND
 長腳接正極 Vcc
PIN 11
5
“Arduino ~ Hello World ”
6
慢慢亮
const int led = 11;
void setup() {
pinMode(led, OUTPUT);
}
void loop() {
for(int i=0;i<178;i++){
analogWrite(led, i);
delay(100);
}
}
一閃一閃
const int led = 11;
void setup() {
pinMode(led, OUTPUT);
}
void loop() {
digitalWrite(led, HIGH);
delay(2000);
digitalWrite(led, LOW);
delay(2000);
}
Raspberry Pi
7
硬體規格
8
GPIO
General
Purpose
Input
Output
可用軟體控制的數位訊號
決定輸入/輸出
9
可安裝的
作業系統
10
Raspbian
OS
11
Windows 10
IoT Core
12
Led
如何接
▸短腳接負極 GND
▸長腳接正極 Vcc
GPIO 4
13
利用
麵包板
14
麵包板
說明
15
“RPi ~ Hello World ”
16
設定LED 亮/熄
var gpio = GpioController.GetDefault();
if (gpio != null)
{
_gpLED4 = gpio.OpenPin(LED_GPIO_4);
_gpLED4.Write(GpioPinValue.Low);
_gpLED4.SetDriveMode(GpioPinDriveMode.Output);
}
//設定
_gpLED4.Write(GpioPinValue.Low);
//or
_gpLED4.Write(GpioPinValue.High);
“RPi ~ Hello World 2 ”
17
Button 設定LED 亮/熄
_gpButtonRed27 = gpio.OpenPin(BUTTON_RED_GPIO_27);
_gpButtonRed27.SetDriveMode(GpioPinDriveMode.InputPullUp);
_gpButtonRed27.DebounceTimeout = TimeSpan.FromMilliseconds(50);
_gpButtonRed27.ValueChanged += _gpButtonRed27_ValueChanged;
private void _gpButtonRed27_ValueChanged(...)
{
if (e.Edge == GpioPinEdge.FallingEdge)
{
SetLED4(GpioPinValue.High);
}
else
{
SetLED4(GpioPinValue.Low);
}
}
Button
說明
18
_gpButtonRed27.SetDriveMode(
GpioPinDriveMode.InputPullUp);
_gpButtonRed27.DebounceTimeout =
TimeSpan.FromMilliseconds(50);
“RPi ~ Hello World 3 ”
19
設定LED 紅、黃、綠 輪流亮/熄
_gpLED_YELLOW20.Write(GpioPinValue.Low);
_gpLED_GREEN16.Write(GpioPinValue.Low);
_gpLED_RED21.Write(GpioPinValue.High);
await Task.Delay(TimeSpan.FromSeconds(1.5));
_gpLED_YELLOW20.Write(GpioPinValue.High);
_gpLED_GREEN16.Write(GpioPinValue.Low);
_gpLED_RED21.Write(GpioPinValue.Low);
await Task.Delay(TimeSpan.FromSeconds(1));
_gpLED_YELLOW20.Write(GpioPinValue.Low);
_gpLED_GREEN16.Write(GpioPinValue.High);
_gpLED_RED21.Write(GpioPinValue.Low);
await Task.Delay(TimeSpan.FromSeconds(0.5));
電阻
電阻
計算
 LED規格
 Pi 給 3.3 V
 電阻 R = 電壓 V / 電流 I
R = (3.3-1.85)/0.02
= 72.5 Ω
最小要接 72.5 歐姆的電阻 , 才能避免 LED 燒毀
20
電阻值
計算
21
DHT 22
讀溫/溼度Sensor
22
Data Pin 接到
GPIO 17
23
如何讀取資料?
DHT 22
Datasheet
24
如何讀取資料?
用別人的
Library
25
“DHT ~ Hello World ”
26
讀取 DHT22 的溫溼度資料
var gpio = GpioController.GetDefault();
if (gpio != null)
{
_gpDHT = gpio.OpenPin(17, GpioSharingMode.Exclusive);
_gpDHT.SetDriveMode(GpioPinDriveMode.Input);
}
//每一隔一段時間就讀取溫溼度資料
_dhtReading = await _dht.GetReadingAsync().AsTask();
if (_dhtReading.IsValid)
{
var temperature = _dhtReading.Temperature;
var humidity = _dhtReading.Humidity;
ShowLog($"{temperature:0.0} °C, {humidity:0.0} %");
}
Azure
IoT Suite
27
“Azure IoT~ Hello World ”
28
讀取 DHT22 的溫溼度資料、送到 Azure IoT Suite
Azure
IoT
Suite
29
數百萬個 IoT 裝置
來建立雙向通訊
即時串流處理
“Azure ~ 遠端控制 ”
30
由網頁送 命令 給 Device
“We can do more …”
31
Beacon
主題:使用 Beacon 來實現自動簽到/簽退
@ 2016/7/26 17:00 ~ 18:00
33
34
THANKS!
Any questions?
You can find me at
 rainmaker_ho@gss.com.tw
 (02)25867890 # 12515
 Blog:亂馬客
參考資料
 Raspberry Pi 遊戲機工作坊
 EQL
 Azure IoT Suite
 hackster.io
 OWASP Internet of Things
Project
35

More Related Content

What's hot

Odyssey MAX 10 FPGA入門セミナーテキスト
Odyssey MAX 10 FPGA入門セミナーテキストOdyssey MAX 10 FPGA入門セミナーテキスト
Odyssey MAX 10 FPGA入門セミナーテキスト
Tsuyoshi Horigome
 
第2回 某社Arduino勉強会 ハンズオン
第2回 某社Arduino勉強会 ハンズオン第2回 某社Arduino勉強会 ハンズオン
第2回 某社Arduino勉強会 ハンズオン
Yusuke HIDESHIMA
 
UVLOの等価回路モデル作成方法
UVLOの等価回路モデル作成方法UVLOの等価回路モデル作成方法
UVLOの等価回路モデル作成方法
Tsuyoshi Horigome
 
RSQB Flip Flopの等価回路モデル
RSQB Flip Flopの等価回路モデルRSQB Flip Flopの等価回路モデル
RSQB Flip Flopの等価回路モデル
マルツエレック株式会社 marutsuelec
 
Takep lpc1114-190614
Takep lpc1114-190614Takep lpc1114-190614
Takep lpc1114-190614
たけおか しょうぞう
 
FPGAことはじめ
FPGAことはじめFPGAことはじめ
FPGAことはじめ
Takahiro Nakayama
 
スタートアップ機能の等価回路モデル
スタートアップ機能の等価回路モデルスタートアップ機能の等価回路モデル
スタートアップ機能の等価回路モデル
マルツエレック株式会社 marutsuelec
 
M5Stack互換機を作った話
M5Stack互換機を作った話M5Stack互換機を作った話
M5Stack互換機を作った話
Masawo Yamazaki
 
ネットワークプロトコル探索隊 LLDP-Link Layer Discovery Protocol-
ネットワークプロトコル探索隊 LLDP-Link Layer Discovery Protocol-ネットワークプロトコル探索隊 LLDP-Link Layer Discovery Protocol-
ネットワークプロトコル探索隊 LLDP-Link Layer Discovery Protocol-
ZenSekibe
 
io tつくるよ! LT [m5stackの拡張基板をつくったよ!」
io tつくるよ! LT [m5stackの拡張基板をつくったよ!」io tつくるよ! LT [m5stackの拡張基板をつくったよ!」
io tつくるよ! LT [m5stackの拡張基板をつくったよ!」
Masawo Yamazaki
 
Hardware
HardwareHardware
Hardware
Yukinobu Koyama
 
Code4NaraHandson2_151118
Code4NaraHandson2_151118Code4NaraHandson2_151118
Code4NaraHandson2_151118
康司 石塚
 
Makerの「道具」としてのカスタムLSI
Makerの「道具」としてのカスタムLSIMakerの「道具」としてのカスタムLSI
Makerの「道具」としてのカスタムLSI
Junichi Akita
 
Hardware Design Exercises
Hardware Design ExercisesHardware Design Exercises
Hardware Design Exercises
Yukinobu Koyama
 

What's hot (15)

Odyssey MAX 10 FPGA入門セミナーテキスト
Odyssey MAX 10 FPGA入門セミナーテキストOdyssey MAX 10 FPGA入門セミナーテキスト
Odyssey MAX 10 FPGA入門セミナーテキスト
 
第2回 某社Arduino勉強会 ハンズオン
第2回 某社Arduino勉強会 ハンズオン第2回 某社Arduino勉強会 ハンズオン
第2回 某社Arduino勉強会 ハンズオン
 
UVLOの等価回路モデル作成方法
UVLOの等価回路モデル作成方法UVLOの等価回路モデル作成方法
UVLOの等価回路モデル作成方法
 
RSQB Flip Flopの等価回路モデル
RSQB Flip Flopの等価回路モデルRSQB Flip Flopの等価回路モデル
RSQB Flip Flopの等価回路モデル
 
Arduino入門
Arduino入門Arduino入門
Arduino入門
 
Takep lpc1114-190614
Takep lpc1114-190614Takep lpc1114-190614
Takep lpc1114-190614
 
FPGAことはじめ
FPGAことはじめFPGAことはじめ
FPGAことはじめ
 
スタートアップ機能の等価回路モデル
スタートアップ機能の等価回路モデルスタートアップ機能の等価回路モデル
スタートアップ機能の等価回路モデル
 
M5Stack互換機を作った話
M5Stack互換機を作った話M5Stack互換機を作った話
M5Stack互換機を作った話
 
ネットワークプロトコル探索隊 LLDP-Link Layer Discovery Protocol-
ネットワークプロトコル探索隊 LLDP-Link Layer Discovery Protocol-ネットワークプロトコル探索隊 LLDP-Link Layer Discovery Protocol-
ネットワークプロトコル探索隊 LLDP-Link Layer Discovery Protocol-
 
io tつくるよ! LT [m5stackの拡張基板をつくったよ!」
io tつくるよ! LT [m5stackの拡張基板をつくったよ!」io tつくるよ! LT [m5stackの拡張基板をつくったよ!」
io tつくるよ! LT [m5stackの拡張基板をつくったよ!」
 
Hardware
HardwareHardware
Hardware
 
Code4NaraHandson2_151118
Code4NaraHandson2_151118Code4NaraHandson2_151118
Code4NaraHandson2_151118
 
Makerの「道具」としてのカスタムLSI
Makerの「道具」としてのカスタムLSIMakerの「道具」としてのカスタムLSI
Makerの「道具」としてのカスタムLSI
 
Hardware Design Exercises
Hardware Design ExercisesHardware Design Exercises
Hardware Design Exercises
 

Viewers also liked

Sql效能調校分享-資料瘦身
Sql效能調校分享-資料瘦身Sql效能調校分享-資料瘦身
Sql效能調校分享-資料瘦身
Rainmaker Ho
 
從Developer來看 效能調校
從Developer來看效能調校從Developer來看效能調校
從Developer來看 效能調校
Rainmaker Ho
 
Angular2 Form
Angular2 FormAngular2 Form
Angular2 Form
Rainmaker Ho
 
SQL Count(*) VS Count(1)
SQL Count(*) VS Count(1)SQL Count(*) VS Count(1)
SQL Count(*) VS Count(1)
Rainmaker Ho
 
Sensors, actuators and the Raspberry PI using Python
Sensors, actuators and the Raspberry PI using PythonSensors, actuators and the Raspberry PI using Python
Sensors, actuators and the Raspberry PI using Python
Derek Kiong
 
Angular2 DI
Angular2 DI Angular2 DI
Angular2 DI
Rainmaker Ho
 
軟體弱點掃描
軟體弱點掃描軟體弱點掃描
軟體弱點掃描
Rainmaker Ho
 
Asp.net開發要注意的是?
Asp.net開發要注意的是?Asp.net開發要注意的是?
Asp.net開發要注意的是?
Rainmaker Ho
 
[創業拔萃] 創業救國
[創業拔萃] 創業救國[創業拔萃] 創業救國
[創業拔萃] 創業救國
National Development Council, Taiwan
 
Sensors and Actuators
Sensors and Actuators Sensors and Actuators
Sensors and Actuators
Aamir Shaikh
 
Webduino 新功能介紹體驗
Webduino 新功能介紹體驗Webduino 新功能介紹體驗
Webduino 新功能介紹體驗
Web Arduino
 
高速移動網路新時代 - 雲端與物聯網發展新趨勢 (An Integration Trend of Terminal Devices, IoT and C...
高速移動網路新時代  - 雲端與物聯網發展新趨勢 (An Integration Trend of Terminal Devices, IoT and C...高速移動網路新時代  - 雲端與物聯網發展新趨勢 (An Integration Trend of Terminal Devices, IoT and C...
高速移動網路新時代 - 雲端與物聯網發展新趨勢 (An Integration Trend of Terminal Devices, IoT and C...
William Liang
 
Data-centric IoT (NTU CSIE 2016.12)
Data-centric IoT (NTU CSIE 2016.12)Data-centric IoT (NTU CSIE 2016.12)
Data-centric IoT (NTU CSIE 2016.12)
William Liang
 
前端工程師的告白: 親愛的,開源的物聯網好好玩呀!
前端工程師的告白: 親愛的,開源的物聯網好好玩呀!前端工程師的告白: 親愛的,開源的物聯網好好玩呀!
前端工程師的告白: 親愛的,開源的物聯網好好玩呀!
Web Arduino
 
Introduction to Windows IoT via Raspberry Pi 3
Introduction to Windows IoT via Raspberry Pi 3Introduction to Windows IoT via Raspberry Pi 3
Introduction to Windows IoT via Raspberry Pi 3
Lee Richardson
 
Internet of things using Raspberry Pi
Internet of things using Raspberry PiInternet of things using Raspberry Pi
Internet of things using Raspberry Pi
Yash Gajera
 
The Future of Embedded and IoT Security: Kaspersky Operating System
The Future of Embedded and IoT Security: Kaspersky Operating SystemThe Future of Embedded and IoT Security: Kaspersky Operating System
The Future of Embedded and IoT Security: Kaspersky Operating System
Kaspersky Lab
 
研華 智聯工廠與智能設備雙引擎|實踐智慧製造
研華 智聯工廠與智能設備雙引擎|實踐智慧製造  研華 智聯工廠與智能設備雙引擎|實踐智慧製造
研華 智聯工廠與智能設備雙引擎|實踐智慧製造
鼎新電腦
 

Viewers also liked (18)

Sql效能調校分享-資料瘦身
Sql效能調校分享-資料瘦身Sql效能調校分享-資料瘦身
Sql效能調校分享-資料瘦身
 
從Developer來看 效能調校
從Developer來看效能調校從Developer來看效能調校
從Developer來看 效能調校
 
Angular2 Form
Angular2 FormAngular2 Form
Angular2 Form
 
SQL Count(*) VS Count(1)
SQL Count(*) VS Count(1)SQL Count(*) VS Count(1)
SQL Count(*) VS Count(1)
 
Sensors, actuators and the Raspberry PI using Python
Sensors, actuators and the Raspberry PI using PythonSensors, actuators and the Raspberry PI using Python
Sensors, actuators and the Raspberry PI using Python
 
Angular2 DI
Angular2 DI Angular2 DI
Angular2 DI
 
軟體弱點掃描
軟體弱點掃描軟體弱點掃描
軟體弱點掃描
 
Asp.net開發要注意的是?
Asp.net開發要注意的是?Asp.net開發要注意的是?
Asp.net開發要注意的是?
 
[創業拔萃] 創業救國
[創業拔萃] 創業救國[創業拔萃] 創業救國
[創業拔萃] 創業救國
 
Sensors and Actuators
Sensors and Actuators Sensors and Actuators
Sensors and Actuators
 
Webduino 新功能介紹體驗
Webduino 新功能介紹體驗Webduino 新功能介紹體驗
Webduino 新功能介紹體驗
 
高速移動網路新時代 - 雲端與物聯網發展新趨勢 (An Integration Trend of Terminal Devices, IoT and C...
高速移動網路新時代  - 雲端與物聯網發展新趨勢 (An Integration Trend of Terminal Devices, IoT and C...高速移動網路新時代  - 雲端與物聯網發展新趨勢 (An Integration Trend of Terminal Devices, IoT and C...
高速移動網路新時代 - 雲端與物聯網發展新趨勢 (An Integration Trend of Terminal Devices, IoT and C...
 
Data-centric IoT (NTU CSIE 2016.12)
Data-centric IoT (NTU CSIE 2016.12)Data-centric IoT (NTU CSIE 2016.12)
Data-centric IoT (NTU CSIE 2016.12)
 
前端工程師的告白: 親愛的,開源的物聯網好好玩呀!
前端工程師的告白: 親愛的,開源的物聯網好好玩呀!前端工程師的告白: 親愛的,開源的物聯網好好玩呀!
前端工程師的告白: 親愛的,開源的物聯網好好玩呀!
 
Introduction to Windows IoT via Raspberry Pi 3
Introduction to Windows IoT via Raspberry Pi 3Introduction to Windows IoT via Raspberry Pi 3
Introduction to Windows IoT via Raspberry Pi 3
 
Internet of things using Raspberry Pi
Internet of things using Raspberry PiInternet of things using Raspberry Pi
Internet of things using Raspberry Pi
 
The Future of Embedded and IoT Security: Kaspersky Operating System
The Future of Embedded and IoT Security: Kaspersky Operating SystemThe Future of Embedded and IoT Security: Kaspersky Operating System
The Future of Embedded and IoT Security: Kaspersky Operating System
 
研華 智聯工廠與智能設備雙引擎|實踐智慧製造
研華 智聯工廠與智能設備雙引擎|實踐智慧製造  研華 智聯工廠與智能設備雙引擎|實踐智慧製造
研華 智聯工廠與智能設備雙引擎|實踐智慧製造
 

Similar to Internet of Things

20140910 Arduino for beginners
20140910 Arduino for beginners20140910 Arduino for beginners
20140910 Arduino for beginners
Kenichi Ohwada
 
OSC Tokyo 2013 Spring JRPUG
OSC Tokyo 2013 Spring JRPUGOSC Tokyo 2013 Spring JRPUG
OSC Tokyo 2013 Spring JRPUG
Hideki Aoshima
 
150130 edison-ug
150130 edison-ug150130 edison-ug
150130 edison-ug
Takehiko Tomiyama
 
今すぐ始めるArduino
今すぐ始めるArduino今すぐ始めるArduino
今すぐ始めるArduino
funa3
 
平成25年社会人講座 Arduinoによるマイコン入門講座
平成25年社会人講座 Arduinoによるマイコン入門講座平成25年社会人講座 Arduinoによるマイコン入門講座
平成25年社会人講座 Arduinoによるマイコン入門講座
Katsuhiro Morishita
 
20190521 node-red ug vol8 kitazaki v2
20190521 node-red ug vol8 kitazaki v220190521 node-red ug vol8 kitazaki v2
20190521 node-red ug vol8 kitazaki v2
Ayachika Kitazaki
 
20190521 node-red ug vol8 kitazaki v1
20190521 node-red ug vol8 kitazaki v120190521 node-red ug vol8 kitazaki v1
20190521 node-red ug vol8 kitazaki v1
Ayachika Kitazaki
 
DE0でラジコンカー作ってみた 関西de0 fpga勉強会20120519
DE0でラジコンカー作ってみた 関西de0 fpga勉強会20120519DE0でラジコンカー作ってみた 関西de0 fpga勉強会20120519
DE0でラジコンカー作ってみた 関西de0 fpga勉強会20120519Yasuhiro Ishii
 
Python, RaspberryPi, Arduinoで作る消費電力モニタリングシステム
Python, RaspberryPi, Arduinoで作る消費電力モニタリングシステムPython, RaspberryPi, Arduinoで作る消費電力モニタリングシステム
Python, RaspberryPi, Arduinoで作る消費電力モニタリングシステム
Junichi Kakisako
 
20110724 WIZDOM:知識ゼロからのArduino(1)
20110724 WIZDOM:知識ゼロからのArduino(1)20110724 WIZDOM:知識ゼロからのArduino(1)
20110724 WIZDOM:知識ゼロからのArduino(1)Atsushi ENTA
 
Imaocande LT
Imaocande LTImaocande LT
Imaocande LT
Imaoka Micihihiro
 
SFC デザイン言語WS(電子工作)第3回「電子工作の作法」
SFC デザイン言語WS(電子工作)第3回「電子工作の作法」SFC デザイン言語WS(電子工作)第3回「電子工作の作法」
SFC デザイン言語WS(電子工作)第3回「電子工作の作法」
Makoto Hirahara
 
2020/5/7 neko IoTLT vol.1 by kitazaki
2020/5/7 neko IoTLT vol.1 by kitazaki2020/5/7 neko IoTLT vol.1 by kitazaki
2020/5/7 neko IoTLT vol.1 by kitazaki
Ayachika Kitazaki
 
自作RISC-VチップでLチカをやってみた
自作RISC-VチップでLチカをやってみた自作RISC-VチップでLチカをやってみた
自作RISC-VチップでLチカをやってみた
Junichi Akita
 
【入門】Arduino勉強会
【入門】Arduino勉強会【入門】Arduino勉強会
【入門】Arduino勉強会
Masashi_Brilliant
 
第1回電子制御講習
第1回電子制御講習第1回電子制御講習
第1回電子制御講習
Koshiro Miyauchi
 
FPGA workshop (2012f): Network Tester
FPGA workshop (2012f): Network TesterFPGA workshop (2012f): Network Tester
FPGA workshop (2012f): Network Testerykuga
 
Arduinoを使ったgameboyカードリッジのdump
Arduinoを使ったgameboyカードリッジのdumpArduinoを使ったgameboyカードリッジのdump
Arduinoを使ったgameboyカードリッジのdump
__106__
 
2016年12月21日 AITCシニア技術者勉強会 第2回「センサに反応する総天然色イルミネーションを作ってみよう!」
2016年12月21日 AITCシニア技術者勉強会 第2回「センサに反応する総天然色イルミネーションを作ってみよう!」 2016年12月21日 AITCシニア技術者勉強会 第2回「センサに反応する総天然色イルミネーションを作ってみよう!」
2016年12月21日 AITCシニア技術者勉強会 第2回「センサに反応する総天然色イルミネーションを作ってみよう!」
aitc_jp
 
マイコンボード色々 2017.03
マイコンボード色々 2017.03マイコンボード色々 2017.03
マイコンボード色々 2017.03
Hirokazu Tokuno
 

Similar to Internet of Things (20)

20140910 Arduino for beginners
20140910 Arduino for beginners20140910 Arduino for beginners
20140910 Arduino for beginners
 
OSC Tokyo 2013 Spring JRPUG
OSC Tokyo 2013 Spring JRPUGOSC Tokyo 2013 Spring JRPUG
OSC Tokyo 2013 Spring JRPUG
 
150130 edison-ug
150130 edison-ug150130 edison-ug
150130 edison-ug
 
今すぐ始めるArduino
今すぐ始めるArduino今すぐ始めるArduino
今すぐ始めるArduino
 
平成25年社会人講座 Arduinoによるマイコン入門講座
平成25年社会人講座 Arduinoによるマイコン入門講座平成25年社会人講座 Arduinoによるマイコン入門講座
平成25年社会人講座 Arduinoによるマイコン入門講座
 
20190521 node-red ug vol8 kitazaki v2
20190521 node-red ug vol8 kitazaki v220190521 node-red ug vol8 kitazaki v2
20190521 node-red ug vol8 kitazaki v2
 
20190521 node-red ug vol8 kitazaki v1
20190521 node-red ug vol8 kitazaki v120190521 node-red ug vol8 kitazaki v1
20190521 node-red ug vol8 kitazaki v1
 
DE0でラジコンカー作ってみた 関西de0 fpga勉強会20120519
DE0でラジコンカー作ってみた 関西de0 fpga勉強会20120519DE0でラジコンカー作ってみた 関西de0 fpga勉強会20120519
DE0でラジコンカー作ってみた 関西de0 fpga勉強会20120519
 
Python, RaspberryPi, Arduinoで作る消費電力モニタリングシステム
Python, RaspberryPi, Arduinoで作る消費電力モニタリングシステムPython, RaspberryPi, Arduinoで作る消費電力モニタリングシステム
Python, RaspberryPi, Arduinoで作る消費電力モニタリングシステム
 
20110724 WIZDOM:知識ゼロからのArduino(1)
20110724 WIZDOM:知識ゼロからのArduino(1)20110724 WIZDOM:知識ゼロからのArduino(1)
20110724 WIZDOM:知識ゼロからのArduino(1)
 
Imaocande LT
Imaocande LTImaocande LT
Imaocande LT
 
SFC デザイン言語WS(電子工作)第3回「電子工作の作法」
SFC デザイン言語WS(電子工作)第3回「電子工作の作法」SFC デザイン言語WS(電子工作)第3回「電子工作の作法」
SFC デザイン言語WS(電子工作)第3回「電子工作の作法」
 
2020/5/7 neko IoTLT vol.1 by kitazaki
2020/5/7 neko IoTLT vol.1 by kitazaki2020/5/7 neko IoTLT vol.1 by kitazaki
2020/5/7 neko IoTLT vol.1 by kitazaki
 
自作RISC-VチップでLチカをやってみた
自作RISC-VチップでLチカをやってみた自作RISC-VチップでLチカをやってみた
自作RISC-VチップでLチカをやってみた
 
【入門】Arduino勉強会
【入門】Arduino勉強会【入門】Arduino勉強会
【入門】Arduino勉強会
 
第1回電子制御講習
第1回電子制御講習第1回電子制御講習
第1回電子制御講習
 
FPGA workshop (2012f): Network Tester
FPGA workshop (2012f): Network TesterFPGA workshop (2012f): Network Tester
FPGA workshop (2012f): Network Tester
 
Arduinoを使ったgameboyカードリッジのdump
Arduinoを使ったgameboyカードリッジのdumpArduinoを使ったgameboyカードリッジのdump
Arduinoを使ったgameboyカードリッジのdump
 
2016年12月21日 AITCシニア技術者勉強会 第2回「センサに反応する総天然色イルミネーションを作ってみよう!」
2016年12月21日 AITCシニア技術者勉強会 第2回「センサに反応する総天然色イルミネーションを作ってみよう!」 2016年12月21日 AITCシニア技術者勉強会 第2回「センサに反応する総天然色イルミネーションを作ってみよう!」
2016年12月21日 AITCシニア技術者勉強会 第2回「センサに反応する総天然色イルミネーションを作ってみよう!」
 
マイコンボード色々 2017.03
マイコンボード色々 2017.03マイコンボード色々 2017.03
マイコンボード色々 2017.03
 

Recently uploaded

Bhyve Management Daemon Version 3.0 on FreBSD
Bhyve Management Daemon Version 3.0 on FreBSDBhyve Management Daemon Version 3.0 on FreBSD
Bhyve Management Daemon Version 3.0 on FreBSD
Yuichiro Naito
 
RaySheetで解決できるシナリオ10選-業務改善に貢献する機能 - RaySheet Documentation
RaySheetで解決できるシナリオ10選-業務改善に貢献する機能 - RaySheet DocumentationRaySheetで解決できるシナリオ10選-業務改善に貢献する機能 - RaySheet Documentation
RaySheetで解決できるシナリオ10選-業務改善に貢献する機能 - RaySheet Documentation
GrapeCity, inc.
 
RayPen Product Description Documentation - 2024.6.19
RayPen Product Description Documentation - 2024.6.19RayPen Product Description Documentation - 2024.6.19
RayPen Product Description Documentation - 2024.6.19
GrapeCity, inc.
 
クラウドネイティブにおけるセキュアなソフトウェア・サプライ・チェーンの考え方とベストプラクティス.pdf
クラウドネイティブにおけるセキュアなソフトウェア・サプライ・チェーンの考え方とベストプラクティス.pdfクラウドネイティブにおけるセキュアなソフトウェア・サプライ・チェーンの考え方とベストプラクティス.pdf
クラウドネイティブにおけるセキュアなソフトウェア・サプライ・チェーンの考え方とベストプラクティス.pdf
TatsuyaHanayama
 
Solanaで始めるRustプログラミング - Superteam Japan Developer Event
Solanaで始めるRustプログラミング - Superteam Japan Developer EventSolanaで始めるRustプログラミング - Superteam Japan Developer Event
Solanaで始めるRustプログラミング - Superteam Japan Developer Event
K Kinzal
 
RayBarcode Product Description Documentation - 2024.6.19
RayBarcode Product Description Documentation - 2024.6.19RayBarcode Product Description Documentation - 2024.6.19
RayBarcode Product Description Documentation - 2024.6.19
GrapeCity, inc.
 
シグネチャで始めるRustプログラミング - Superteam Japan Developer Event
シグネチャで始めるRustプログラミング - Superteam Japan Developer Eventシグネチャで始めるRustプログラミング - Superteam Japan Developer Event
シグネチャで始めるRustプログラミング - Superteam Japan Developer Event
K Kinzal
 
RaySheet Product Description Documentation - 2024.6.19
RaySheet Product Description Documentation - 2024.6.19RaySheet Product Description Documentation - 2024.6.19
RaySheet Product Description Documentation - 2024.6.19
GrapeCity, inc.
 

Recently uploaded (8)

Bhyve Management Daemon Version 3.0 on FreBSD
Bhyve Management Daemon Version 3.0 on FreBSDBhyve Management Daemon Version 3.0 on FreBSD
Bhyve Management Daemon Version 3.0 on FreBSD
 
RaySheetで解決できるシナリオ10選-業務改善に貢献する機能 - RaySheet Documentation
RaySheetで解決できるシナリオ10選-業務改善に貢献する機能 - RaySheet DocumentationRaySheetで解決できるシナリオ10選-業務改善に貢献する機能 - RaySheet Documentation
RaySheetで解決できるシナリオ10選-業務改善に貢献する機能 - RaySheet Documentation
 
RayPen Product Description Documentation - 2024.6.19
RayPen Product Description Documentation - 2024.6.19RayPen Product Description Documentation - 2024.6.19
RayPen Product Description Documentation - 2024.6.19
 
クラウドネイティブにおけるセキュアなソフトウェア・サプライ・チェーンの考え方とベストプラクティス.pdf
クラウドネイティブにおけるセキュアなソフトウェア・サプライ・チェーンの考え方とベストプラクティス.pdfクラウドネイティブにおけるセキュアなソフトウェア・サプライ・チェーンの考え方とベストプラクティス.pdf
クラウドネイティブにおけるセキュアなソフトウェア・サプライ・チェーンの考え方とベストプラクティス.pdf
 
Solanaで始めるRustプログラミング - Superteam Japan Developer Event
Solanaで始めるRustプログラミング - Superteam Japan Developer EventSolanaで始めるRustプログラミング - Superteam Japan Developer Event
Solanaで始めるRustプログラミング - Superteam Japan Developer Event
 
RayBarcode Product Description Documentation - 2024.6.19
RayBarcode Product Description Documentation - 2024.6.19RayBarcode Product Description Documentation - 2024.6.19
RayBarcode Product Description Documentation - 2024.6.19
 
シグネチャで始めるRustプログラミング - Superteam Japan Developer Event
シグネチャで始めるRustプログラミング - Superteam Japan Developer Eventシグネチャで始めるRustプログラミング - Superteam Japan Developer Event
シグネチャで始めるRustプログラミング - Superteam Japan Developer Event
 
RaySheet Product Description Documentation - 2024.6.19
RaySheet Product Description Documentation - 2024.6.19RaySheet Product Description Documentation - 2024.6.19
RaySheet Product Description Documentation - 2024.6.19
 

Internet of Things

Editor's Notes

  1. 控制器
  2. LEDHello LEDLoop
  3. http://raspberrypi.stackexchange.com/questions/40318/raspberry-pi-2-can-gpio-pins-29-40-be-used-gpio-gen-input-output-configurable-in
  4. http://bugworkshop.blogspot.tw/2012/12/diy-breadboard.html
  5. 1.先直接,接 GND & 3.3V 2.再接 GPIO 4 3.按下Button
  6. https://msdn.microsoft.com/zh-tw/library/windows.devices.gpio.gpiopindrivemode.aspx
  7. 1.先直下, btnLEDRYG
  8. http://www.digikey.tw/zh/resources/conversion-calculators/conversion-calculator-resistor-color-code-5-band
  9. https://cdn-shop.adafruit.com/datasheets/DHT22.pdf
  10. https://www.hackster.io/porrey/dht11-dht22-temperature-sensor-077790
  11. 1.取得 溫溼度資料 2.勾選超過溫度就亮LED 3.用吹風機
  12. 1.取得 溫溼度資料 2.勾選超過溫度就亮LED 3.勾選送到 Cloud 4. https://tdd-2012-2/iot 5用吹風機
  13. http://www.elifemall.com.tw/newweb/images/egg/index.php http://udn.com/news/story/7270/1585899-EQL%E6%99%BA%E8%83%BD%E5%B0%8F%E7%AE%A1%E5%AE%B6-%E8%AE%93%E8%88%8A%E5%AE%B6%E9%9B%BB%E8%AE%8A%E3%80%8C%E6%99%BA%E6%85%A7%E3%80%8D
  14. http://www.elifemall.com.tw/newweb/images/egg/index.php http://udn.com/news/story/7270/1585899-EQL%E6%99%BA%E8%83%BD%E5%B0%8F%E7%AE%A1%E5%AE%B6-%E8%AE%93%E8%88%8A%E5%AE%B6%E9%9B%BB%E8%AE%8A%E3%80%8C%E6%99%BA%E6%85%A7%E3%80%8D http://goo.gl/0nj2JB