SlideShare ist ein Scribd-Unternehmen logo
1 von 30
Downloaden Sie, um offline zu lesen
Processing 互動媒體結合
Android智慧型手機研習營
CAVE Education,2013
曾吉弘
nissin@cavedu.com
國北教大玩具與遊戲設計碩士
政治大學資訊管理學士
淡江電機博士班就讀中
現為CAVE教育團隊 技術總監
多校機器人業界講師
<MAKE>、<ROBOCON>雜誌特約編輯
Creativity
Adventure
Virtue
Enjoy
Robocon雜誌國際中文版
Facebook  CAVE教育團隊
CAVE系列叢書
CAVE活動公布欄
CAVE課程
CAVE實驗室
本日流程
• 9:30 CAVE教育團隊簡介
• 9:50 Processing 環境安
裝 設定 Android SDK 資
料夾 與Android 裝置驅動
程式 介紹Processing IDE
與程式基礎架構 第一支
Processing 程式 - 繪製幾
何圖形
• 10:30 結合鍵盤與滑鼠動
作 按下不同的按鍵畫出各
種圖形與線條 滑鼠點擊與
拖拉 - 小畫家
• 13:00 將Processing 專案
執行於手機
如何下載外部函式庫
觸碰互動小球範例
• 15:30 取得手機的硬體狀
態
加速度、姿態感測器
取得座標
• 16:50 結語、賦歸
Processing簡介
• Processing 由Ben Fry 及Casey Reas 發起,並且是由
MIT Media Lab的Aesthetics and Computation Group
的構想發展出來的。
• Processing 開放原始碼的程式語言及開發環境,以Java語
法為基礎,可轉換為Java程式,主要用於藝術、影像、影
音設計與處理。支援的平台有Linux、Mac OS X及
Windows。
• 現在 Processing 可與 Arduino 嵌入式開發進行互動,更
可結合 Android 行動裝置。
程式碼
常用功能
偵錯訊息
• Run
• Verify
• New
• Open
• Save
• Export Application
Processing 基本程式架構
• void setup()
• 設定與宣告
• void draw()
• 負責繪圖的無窮迴圈
001:長方形
1. size(200,200);
2. background(255);
3. stroke(0);
4. fill(150);
5. rect(50,50,75,100);
002:無填滿小圓
1. size(200,200);
2. smooth();
3. background(255);
4. // noFill() leaves the
shape with only an
outline.
5. noFill();
6. stroke(0);
7. ellipse(60,60,100,100);
003:三個小圓
1. smooth();
2. background(255);
3. noStroke();
4. // Bright red
5. fill(255,0,0);
6. ellipse(20,20,16,16);
7. // Dark red
8. fill(127,0,0);
9. ellipse(40,20,16,16);
10. // Pink (pale red)
11. fill(255,200,200);
12. ellipse(60,20,16,16);
Processing Color Selector
挑戰
• 改用for loop 產生一排五個圓
• 連顏色一起random?
– random(255);
004:透明度
1. // Example 1-4: Alpha Transparency
2. size(200,200);
3. background(0);
4. noStroke();
5. // No fourth argument means 100%
opacity.
6. fill(0,0,255);
7. rect(0,0,100,200);
8. // 255 means 100% opacity.
9. fill(255,0,0,255);
10.rect(0,0,200,40);
11.// 75% opacity.
12.fill(255,0,0,191);
13.rect(0,50,200,40); //以下省略
005:小機器人
006:滑鼠座標
• mouseX:滑鼠X座標
• mouseY:滑鼠Y座標
007:滑鼠點擊mousePressed
008:鍵盤按鍵事件
• keyPressed / key ==‘?’
15_1 載入圖片
• 圖檔要放在 /data 中
15_3 隨機顯示圖片
• 隨機指定影像陣列之 index 達到隨機換圖
的效果
• 挑戰!如何改為依序顯示?(i++ / i--)
Clock:文字與系統時間
• 取得系統時間
• 根據XY座標改
變顏色
重要連結
• http://wiki.processing.org/w/Android
• http://pandalabccc.blogspot.tw/search/label/Processi
ng
• http://www.learningprocessing.com/
• http://hali619.blogspot.tw/2012/08/processing1.html
• Ketai – Processing Android Library

Weitere ähnliche Inhalte

Was ist angesagt?

151107 物聯網教學應用發表會-開場
151107   物聯網教學應用發表會-開場151107   物聯網教學應用發表會-開場
151107 物聯網教學應用發表會-開場CAVEDU Education
 
Mobile Learning and Robotics in Taiwan / 台灣的行動學習與機器人教育
Mobile Learning and Robotics in Taiwan / 台灣的行動學習與機器人教育Mobile Learning and Robotics in Taiwan / 台灣的行動學習與機器人教育
Mobile Learning and Robotics in Taiwan / 台灣的行動學習與機器人教育CAVEDU Education
 
140921 - About CAVEDU教育團隊
140921 - About CAVEDU教育團隊140921 - About CAVEDU教育團隊
140921 - About CAVEDU教育團隊CAVEDU Education
 
IBM Bluemix 物聯新世界 Future with Robot
IBM Bluemix 物聯新世界  Future with RobotIBM Bluemix 物聯新世界  Future with Robot
IBM Bluemix 物聯新世界 Future with RobotCAVEDU Education
 
[ Coscup 2013 ] 新創到中型技術團隊經營與發展 - 導入 open source 的經驗
[ Coscup 2013 ] 新創到中型技術團隊經營與發展 - 導入 open source 的經驗[ Coscup 2013 ] 新創到中型技術團隊經營與發展 - 導入 open source 的經驗
[ Coscup 2013 ] 新創到中型技術團隊經營與發展 - 導入 open source 的經驗ChiaHsien Lee
 
Opendata kh xavier_20130518
Opendata kh xavier_20130518Opendata kh xavier_20130518
Opendata kh xavier_20130518Xavier Wu
 
快速打造個人化綠能色聯網(Green IoT)
快速打造個人化綠能色聯網(Green IoT)快速打造個人化綠能色聯網(Green IoT)
快速打造個人化綠能色聯網(Green IoT)Dofi Lab
 
淡江資管專題演講簡報_那些年,我們應該知道得事情
淡江資管專題演講簡報_那些年,我們應該知道得事情淡江資管專題演講簡報_那些年,我們應該知道得事情
淡江資管專題演講簡報_那些年,我們應該知道得事情ChiaHsien Lee
 

Was ist angesagt? (11)

151107 物聯網教學應用發表會-開場
151107   物聯網教學應用發表會-開場151107   物聯網教學應用發表會-開場
151107 物聯網教學應用發表會-開場
 
Mobile Learning and Robotics in Taiwan / 台灣的行動學習與機器人教育
Mobile Learning and Robotics in Taiwan / 台灣的行動學習與機器人教育Mobile Learning and Robotics in Taiwan / 台灣的行動學習與機器人教育
Mobile Learning and Robotics in Taiwan / 台灣的行動學習與機器人教育
 
140921 - About CAVEDU教育團隊
140921 - About CAVEDU教育團隊140921 - About CAVEDU教育團隊
140921 - About CAVEDU教育團隊
 
180321 MIT見聞分享
180321   MIT見聞分享180321   MIT見聞分享
180321 MIT見聞分享
 
IBM Bluemix 物聯新世界 Future with Robot
IBM Bluemix 物聯新世界  Future with RobotIBM Bluemix 物聯新世界  Future with Robot
IBM Bluemix 物聯新世界 Future with Robot
 
[ Coscup 2013 ] 新創到中型技術團隊經營與發展 - 導入 open source 的經驗
[ Coscup 2013 ] 新創到中型技術團隊經營與發展 - 導入 open source 的經驗[ Coscup 2013 ] 新創到中型技術團隊經營與發展 - 導入 open source 的經驗
[ Coscup 2013 ] 新創到中型技術團隊經營與發展 - 導入 open source 的經驗
 
智能風扇
智能風扇智能風扇
智能風扇
 
智慧家庭
智慧家庭智慧家庭
智慧家庭
 
Opendata kh xavier_20130518
Opendata kh xavier_20130518Opendata kh xavier_20130518
Opendata kh xavier_20130518
 
快速打造個人化綠能色聯網(Green IoT)
快速打造個人化綠能色聯網(Green IoT)快速打造個人化綠能色聯網(Green IoT)
快速打造個人化綠能色聯網(Green IoT)
 
淡江資管專題演講簡報_那些年,我們應該知道得事情
淡江資管專題演講簡報_那些年,我們應該知道得事情淡江資管專題演講簡報_那些年,我們應該知道得事情
淡江資管專題演講簡報_那些年,我們應該知道得事情
 

Andere mochten auch

Arduino 與 s4 a
Arduino 與 s4 aArduino 與 s4 a
Arduino 與 s4 aWayne Huang
 
Arduino 習作工坊#2 - 動力之夜150114
Arduino 習作工坊#2 - 動力之夜150114Arduino 習作工坊#2 - 動力之夜150114
Arduino 習作工坊#2 - 動力之夜150114CAVEDU Education
 
菁英二班第7週教學聯繫(4 11)
菁英二班第7週教學聯繫(4 11)菁英二班第7週教學聯繫(4 11)
菁英二班第7週教學聯繫(4 11)yvette wu
 
Arduino Yun Mini - 使用SQLite
Arduino Yun Mini - 使用SQLiteArduino Yun Mini - 使用SQLite
Arduino Yun Mini - 使用SQLiteWei-Tsung Su
 
105.05 加盟連鎖展-連鎖創業行銷與行銷策略 - 詹翔霖教授-文章dm
105.05 加盟連鎖展-連鎖創業行銷與行銷策略 - 詹翔霖教授-文章dm105.05 加盟連鎖展-連鎖創業行銷與行銷策略 - 詹翔霖教授-文章dm
105.05 加盟連鎖展-連鎖創業行銷與行銷策略 - 詹翔霖教授-文章dm文化大學
 
湯姆的神奇飛輪
湯姆的神奇飛輪湯姆的神奇飛輪
湯姆的神奇飛輪Wang Jia-Rong
 
Shojinmeat Project 2016年 広報活動の記録
Shojinmeat Project 2016年 広報活動の記録Shojinmeat Project 2016年 広報活動の記録
Shojinmeat Project 2016年 広報活動の記録啓大 田中
 
228事件七十週年紀念活動列表
228事件七十週年紀念活動列表228事件七十週年紀念活動列表
228事件七十週年紀念活動列表newtalk
 
Allegro PCB教學
Allegro PCB教學Allegro PCB教學
Allegro PCB教學Michael Lee
 
Arduino Introduction by coopermaa
Arduino Introduction by coopermaaArduino Introduction by coopermaa
Arduino Introduction by coopermaa馬 萬圳
 
Start a deep learning startup - tutorial
Start a deep learning startup - tutorialStart a deep learning startup - tutorial
Start a deep learning startup - tutorialMostapha Benhenda
 
Introduction to Machine Learning and Deep Learning
Introduction to Machine Learning and Deep LearningIntroduction to Machine Learning and Deep Learning
Introduction to Machine Learning and Deep LearningTerry Taewoong Um
 

Andere mochten auch (20)

Processing 02
Processing 02Processing 02
Processing 02
 
Processing 03
Processing 03Processing 03
Processing 03
 
Arduino 與 s4 a
Arduino 與 s4 aArduino 與 s4 a
Arduino 與 s4 a
 
電子創客魔法學院20160825
電子創客魔法學院20160825電子創客魔法學院20160825
電子創客魔法學院20160825
 
張敏娟_創意教學經驗分享
張敏娟_創意教學經驗分享張敏娟_創意教學經驗分享
張敏娟_創意教學經驗分享
 
Arduino 習作工坊#2 - 動力之夜150114
Arduino 習作工坊#2 - 動力之夜150114Arduino 習作工坊#2 - 動力之夜150114
Arduino 習作工坊#2 - 動力之夜150114
 
菁英二班第7週教學聯繫(4 11)
菁英二班第7週教學聯繫(4 11)菁英二班第7週教學聯繫(4 11)
菁英二班第7週教學聯繫(4 11)
 
Arduino Yun Mini - 使用SQLite
Arduino Yun Mini - 使用SQLiteArduino Yun Mini - 使用SQLite
Arduino Yun Mini - 使用SQLite
 
105.05 加盟連鎖展-連鎖創業行銷與行銷策略 - 詹翔霖教授-文章dm
105.05 加盟連鎖展-連鎖創業行銷與行銷策略 - 詹翔霖教授-文章dm105.05 加盟連鎖展-連鎖創業行銷與行銷策略 - 詹翔霖教授-文章dm
105.05 加盟連鎖展-連鎖創業行銷與行銷策略 - 詹翔霖教授-文章dm
 
湯姆的神奇飛輪
湯姆的神奇飛輪湯姆的神奇飛輪
湯姆的神奇飛輪
 
Shojinmeat Project 2016年 広報活動の記録
Shojinmeat Project 2016年 広報活動の記録Shojinmeat Project 2016年 広報活動の記録
Shojinmeat Project 2016年 広報活動の記録
 
228事件七十週年紀念活動列表
228事件七十週年紀念活動列表228事件七十週年紀念活動列表
228事件七十週年紀念活動列表
 
Processing 01
Processing 01Processing 01
Processing 01
 
紫牛創業協會 Share 系列活動 - How to Monetize Your App? Part II
紫牛創業協會 Share 系列活動 - How to Monetize Your App? Part II紫牛創業協會 Share 系列活動 - How to Monetize Your App? Part II
紫牛創業協會 Share 系列活動 - How to Monetize Your App? Part II
 
紫牛創業協會 Share 系列活動 - How to Monetize Your App?
紫牛創業協會 Share 系列活動 - How to Monetize Your App? 紫牛創業協會 Share 系列活動 - How to Monetize Your App?
紫牛創業協會 Share 系列活動 - How to Monetize Your App?
 
[Connect 系列活動] 歐洲矽谷─愛爾蘭蛻變大解密
[Connect 系列活動] 歐洲矽谷─愛爾蘭蛻變大解密[Connect 系列活動] 歐洲矽谷─愛爾蘭蛻變大解密
[Connect 系列活動] 歐洲矽谷─愛爾蘭蛻變大解密
 
Allegro PCB教學
Allegro PCB教學Allegro PCB教學
Allegro PCB教學
 
Arduino Introduction by coopermaa
Arduino Introduction by coopermaaArduino Introduction by coopermaa
Arduino Introduction by coopermaa
 
Start a deep learning startup - tutorial
Start a deep learning startup - tutorialStart a deep learning startup - tutorial
Start a deep learning startup - tutorial
 
Introduction to Machine Learning and Deep Learning
Introduction to Machine Learning and Deep LearningIntroduction to Machine Learning and Deep Learning
Introduction to Machine Learning and Deep Learning
 

Ähnlich wie Processing Tutorial - Create your interactive program in a click~

App design process part III
App design process part IIIApp design process part III
App design process part IIINTUST
 
Adobe Indesign CS5 iPad magazine 電子雜誌製作流程
Adobe Indesign CS5 iPad magazine 電子雜誌製作流程Adobe Indesign CS5 iPad magazine 電子雜誌製作流程
Adobe Indesign CS5 iPad magazine 電子雜誌製作流程yunjuli
 
iThome Modern Web 2018: 如何打造高效的機器學習平台
iThome Modern Web 2018: 如何打造高效的機器學習平台iThome Modern Web 2018: 如何打造高效的機器學習平台
iThome Modern Web 2018: 如何打造高效的機器學習平台Evan Lin
 
UIUX Meetup - AUG
UIUX Meetup - AUGUIUX Meetup - AUG
UIUX Meetup - AUGSimon LIN
 
TrainingProgramAtMobileDevTW
TrainingProgramAtMobileDevTWTrainingProgramAtMobileDevTW
TrainingProgramAtMobileDevTWRyan Chung
 
打造你的工具人 Chatbot / Voice Assistant Development 101
打造你的工具人 Chatbot / Voice Assistant Development 101打造你的工具人 Chatbot / Voice Assistant Development 101
打造你的工具人 Chatbot / Voice Assistant Development 101Ryan Chung
 
面對移動化App挑戰的架構設計
面對移動化App挑戰的架構設計面對移動化App挑戰的架構設計
面對移動化App挑戰的架構設計Clark
 
Is it really easy for companies to import Ansible automation
Is it really easy for companies to import Ansible automationIs it really easy for companies to import Ansible automation
Is it really easy for companies to import Ansible automationChu-Siang Lai
 
程式交易面面觀
程式交易面面觀程式交易面面觀
程式交易面面觀Philip Zheng
 
Building Chatbot With Huggging Face
 				Building Chatbot With Huggging Face 				Building Chatbot With Huggging Face
Building Chatbot With Huggging FaceKo Ko
 
20130112用原型驅動設計@webconf
20130112用原型驅動設計@webconf20130112用原型驅動設計@webconf
20130112用原型驅動設計@webconfJustin Lee
 
交點高雄開場簡報-9月份
交點高雄開場簡報-9月份交點高雄開場簡報-9月份
交點高雄開場簡報-9月份交點
 
程式交易介紹及 FinTech 創作分享
程式交易介紹及 FinTech 創作分享程式交易介紹及 FinTech 創作分享
程式交易介紹及 FinTech 創作分享Philip Zheng
 
Take Advantage of UIWebView for iOS Native App Developers
Take Advantage of UIWebView for iOS Native App DevelopersTake Advantage of UIWebView for iOS Native App Developers
Take Advantage of UIWebView for iOS Native App DevelopersRyan Chung
 
Microsoft ai computer vision
Microsoft ai  computer visionMicrosoft ai  computer vision
Microsoft ai computer visionIan Chen
 
Agile tour 2014 - Coding Dojo with C# and TDD
Agile tour 2014 - Coding Dojo with C# and TDDAgile tour 2014 - Coding Dojo with C# and TDD
Agile tour 2014 - Coding Dojo with C# and TDDAgileCommunity
 
Agile tour Taipei 2014 - coding dojo with CSharp and TDD
Agile tour Taipei 2014 - coding dojo with CSharp and TDDAgile tour Taipei 2014 - coding dojo with CSharp and TDD
Agile tour Taipei 2014 - coding dojo with CSharp and TDDJoey Chen
 

Ähnlich wie Processing Tutorial - Create your interactive program in a click~ (20)

About cave 2012
About cave 2012About cave 2012
About cave 2012
 
App design process part III
App design process part IIIApp design process part III
App design process part III
 
Adobe Indesign CS5 iPad magazine 電子雜誌製作流程
Adobe Indesign CS5 iPad magazine 電子雜誌製作流程Adobe Indesign CS5 iPad magazine 電子雜誌製作流程
Adobe Indesign CS5 iPad magazine 電子雜誌製作流程
 
iThome Modern Web 2018: 如何打造高效的機器學習平台
iThome Modern Web 2018: 如何打造高效的機器學習平台iThome Modern Web 2018: 如何打造高效的機器學習平台
iThome Modern Web 2018: 如何打造高效的機器學習平台
 
Bob's CV
Bob's CVBob's CV
Bob's CV
 
UIUX Meetup - AUG
UIUX Meetup - AUGUIUX Meetup - AUG
UIUX Meetup - AUG
 
App Inventor tutorial
App Inventor tutorialApp Inventor tutorial
App Inventor tutorial
 
TrainingProgramAtMobileDevTW
TrainingProgramAtMobileDevTWTrainingProgramAtMobileDevTW
TrainingProgramAtMobileDevTW
 
打造你的工具人 Chatbot / Voice Assistant Development 101
打造你的工具人 Chatbot / Voice Assistant Development 101打造你的工具人 Chatbot / Voice Assistant Development 101
打造你的工具人 Chatbot / Voice Assistant Development 101
 
面對移動化App挑戰的架構設計
面對移動化App挑戰的架構設計面對移動化App挑戰的架構設計
面對移動化App挑戰的架構設計
 
Is it really easy for companies to import Ansible automation
Is it really easy for companies to import Ansible automationIs it really easy for companies to import Ansible automation
Is it really easy for companies to import Ansible automation
 
程式交易面面觀
程式交易面面觀程式交易面面觀
程式交易面面觀
 
Building Chatbot With Huggging Face
 				Building Chatbot With Huggging Face 				Building Chatbot With Huggging Face
Building Chatbot With Huggging Face
 
20130112用原型驅動設計@webconf
20130112用原型驅動設計@webconf20130112用原型驅動設計@webconf
20130112用原型驅動設計@webconf
 
交點高雄開場簡報-9月份
交點高雄開場簡報-9月份交點高雄開場簡報-9月份
交點高雄開場簡報-9月份
 
程式交易介紹及 FinTech 創作分享
程式交易介紹及 FinTech 創作分享程式交易介紹及 FinTech 創作分享
程式交易介紹及 FinTech 創作分享
 
Take Advantage of UIWebView for iOS Native App Developers
Take Advantage of UIWebView for iOS Native App DevelopersTake Advantage of UIWebView for iOS Native App Developers
Take Advantage of UIWebView for iOS Native App Developers
 
Microsoft ai computer vision
Microsoft ai  computer visionMicrosoft ai  computer vision
Microsoft ai computer vision
 
Agile tour 2014 - Coding Dojo with C# and TDD
Agile tour 2014 - Coding Dojo with C# and TDDAgile tour 2014 - Coding Dojo with C# and TDD
Agile tour 2014 - Coding Dojo with C# and TDD
 
Agile tour Taipei 2014 - coding dojo with CSharp and TDD
Agile tour Taipei 2014 - coding dojo with CSharp and TDDAgile tour Taipei 2014 - coding dojo with CSharp and TDD
Agile tour Taipei 2014 - coding dojo with CSharp and TDD
 

Mehr von CAVEDU Education

From computational Thinking to computational Action - Dr. Hal Abelson, MIT Ap...
From computational Thinking to computational Action - Dr. Hal Abelson, MIT Ap...From computational Thinking to computational Action - Dr. Hal Abelson, MIT Ap...
From computational Thinking to computational Action - Dr. Hal Abelson, MIT Ap...CAVEDU Education
 
BBC Micro:bit beginner project
BBC Micro:bit beginner projectBBC Micro:bit beginner project
BBC Micro:bit beginner projectCAVEDU Education
 
LINE Messaging API with LinkIt 7697
LINE Messaging API with LinkIt 7697 LINE Messaging API with LinkIt 7697
LINE Messaging API with LinkIt 7697 CAVEDU Education
 
Latte panda workshop_japan
Latte panda workshop_japanLatte panda workshop_japan
Latte panda workshop_japanCAVEDU Education
 
拿鐵熊貓外殼設計0707
拿鐵熊貓外殼設計0707拿鐵熊貓外殼設計0707
拿鐵熊貓外殼設計0707CAVEDU Education
 
LinkIt 7697 outer case - DesignSpark Mechanical / Onkscape
LinkIt 7697 outer case - DesignSpark Mechanical / OnkscapeLinkIt 7697 outer case - DesignSpark Mechanical / Onkscape
LinkIt 7697 outer case - DesignSpark Mechanical / OnkscapeCAVEDU Education
 
170615 國中小自造者教育師資培訓營
170615  國中小自造者教育師資培訓營170615  國中小自造者教育師資培訓營
170615 國中小自造者教育師資培訓營CAVEDU Education
 
170522_Raspberry Pi 相容開發板
170522_Raspberry Pi 相容開發板170522_Raspberry Pi 相容開發板
170522_Raspberry Pi 相容開發板CAVEDU Education
 
IBM以雲端技術與物聯網創新產業應用@2016 New Taipei Maker Faire
IBM以雲端技術與物聯網創新產業應用@2016 New Taipei Maker FaireIBM以雲端技術與物聯網創新產業應用@2016 New Taipei Maker Faire
IBM以雲端技術與物聯網創新產業應用@2016 New Taipei Maker FaireCAVEDU Education
 
AAEON 當創客碰上UP板 - Intel Cherry Trail 高效能maker開發者平台@2016 new taipei maker faire
AAEON 當創客碰上UP板 - Intel Cherry Trail 高效能maker開發者平台@2016 new taipei maker faireAAEON 當創客碰上UP板 - Intel Cherry Trail 高效能maker開發者平台@2016 new taipei maker faire
AAEON 當創客碰上UP板 - Intel Cherry Trail 高效能maker開發者平台@2016 new taipei maker faireCAVEDU Education
 
物聯網好棒棒 您專屬的IoT私有雲平台
物聯網好棒棒 您專屬的IoT私有雲平台物聯網好棒棒 您專屬的IoT私有雲平台
物聯網好棒棒 您專屬的IoT私有雲平台CAVEDU Education
 
絕地武士心靈控制家用雲端智慧型物聯網光劍搭載無線路由器光劍底座Final
絕地武士心靈控制家用雲端智慧型物聯網光劍搭載無線路由器光劍底座Final絕地武士心靈控制家用雲端智慧型物聯網光劍搭載無線路由器光劍底座Final
絕地武士心靈控制家用雲端智慧型物聯網光劍搭載無線路由器光劍底座FinalCAVEDU Education
 
LinkIt ONE tutorial #1- Basics
LinkIt ONE tutorial #1- BasicsLinkIt ONE tutorial #1- Basics
LinkIt ONE tutorial #1- BasicsCAVEDU Education
 
LinkIt ONE tutorial #2- Communication and cloud service
LinkIt ONE tutorial #2- Communication and cloud serviceLinkIt ONE tutorial #2- Communication and cloud service
LinkIt ONE tutorial #2- Communication and cloud serviceCAVEDU Education
 
160603 T客邦7688物聯網實作坊
160603  T客邦7688物聯網實作坊160603  T客邦7688物聯網實作坊
160603 T客邦7688物聯網實作坊CAVEDU Education
 
2016 CAVEDU物聯網應用發表會 - 開場
2016 CAVEDU物聯網應用發表會 - 開場2016 CAVEDU物聯網應用發表會 - 開場
2016 CAVEDU物聯網應用發表會 - 開場CAVEDU Education
 
Amazon AWS IoT 利用 AWS IoT 開發智慧家居解決方案
Amazon AWS IoT 利用 AWS IoT 開發智慧家居解決方案Amazon AWS IoT 利用 AWS IoT 開發智慧家居解決方案
Amazon AWS IoT 利用 AWS IoT 開發智慧家居解決方案CAVEDU Education
 
LinkIt Smart 7688 - a more connected world
LinkIt Smart 7688 - a more connected worldLinkIt Smart 7688 - a more connected world
LinkIt Smart 7688 - a more connected worldCAVEDU Education
 

Mehr von CAVEDU Education (20)

From computational Thinking to computational Action - Dr. Hal Abelson, MIT Ap...
From computational Thinking to computational Action - Dr. Hal Abelson, MIT Ap...From computational Thinking to computational Action - Dr. Hal Abelson, MIT Ap...
From computational Thinking to computational Action - Dr. Hal Abelson, MIT Ap...
 
BBC Micro:bit beginner project
BBC Micro:bit beginner projectBBC Micro:bit beginner project
BBC Micro:bit beginner project
 
LINE Messaging API with LinkIt 7697
LINE Messaging API with LinkIt 7697 LINE Messaging API with LinkIt 7697
LINE Messaging API with LinkIt 7697
 
Latte panda workshop_japan
Latte panda workshop_japanLatte panda workshop_japan
Latte panda workshop_japan
 
拿鐵熊貓外殼設計0707
拿鐵熊貓外殼設計0707拿鐵熊貓外殼設計0707
拿鐵熊貓外殼設計0707
 
LinkIt 7697 outer case - DesignSpark Mechanical / Onkscape
LinkIt 7697 outer case - DesignSpark Mechanical / OnkscapeLinkIt 7697 outer case - DesignSpark Mechanical / Onkscape
LinkIt 7697 outer case - DesignSpark Mechanical / Onkscape
 
170615 國中小自造者教育師資培訓營
170615  國中小自造者教育師資培訓營170615  國中小自造者教育師資培訓營
170615 國中小自造者教育師資培訓營
 
170522_Raspberry Pi 相容開發板
170522_Raspberry Pi 相容開發板170522_Raspberry Pi 相容開發板
170522_Raspberry Pi 相容開發板
 
LinkIt 7697 IoT tutorial
LinkIt 7697 IoT tutorialLinkIt 7697 IoT tutorial
LinkIt 7697 IoT tutorial
 
IBM以雲端技術與物聯網創新產業應用@2016 New Taipei Maker Faire
IBM以雲端技術與物聯網創新產業應用@2016 New Taipei Maker FaireIBM以雲端技術與物聯網創新產業應用@2016 New Taipei Maker Faire
IBM以雲端技術與物聯網創新產業應用@2016 New Taipei Maker Faire
 
AAEON 當創客碰上UP板 - Intel Cherry Trail 高效能maker開發者平台@2016 new taipei maker faire
AAEON 當創客碰上UP板 - Intel Cherry Trail 高效能maker開發者平台@2016 new taipei maker faireAAEON 當創客碰上UP板 - Intel Cherry Trail 高效能maker開發者平台@2016 new taipei maker faire
AAEON 當創客碰上UP板 - Intel Cherry Trail 高效能maker開發者平台@2016 new taipei maker faire
 
物聯網好棒棒 您專屬的IoT私有雲平台
物聯網好棒棒 您專屬的IoT私有雲平台物聯網好棒棒 您專屬的IoT私有雲平台
物聯網好棒棒 您專屬的IoT私有雲平台
 
絕地武士心靈控制家用雲端智慧型物聯網光劍搭載無線路由器光劍底座Final
絕地武士心靈控制家用雲端智慧型物聯網光劍搭載無線路由器光劍底座Final絕地武士心靈控制家用雲端智慧型物聯網光劍搭載無線路由器光劍底座Final
絕地武士心靈控制家用雲端智慧型物聯網光劍搭載無線路由器光劍底座Final
 
LinkIt ONE tutorial #1- Basics
LinkIt ONE tutorial #1- BasicsLinkIt ONE tutorial #1- Basics
LinkIt ONE tutorial #1- Basics
 
LinkIt ONE tutorial #2- Communication and cloud service
LinkIt ONE tutorial #2- Communication and cloud serviceLinkIt ONE tutorial #2- Communication and cloud service
LinkIt ONE tutorial #2- Communication and cloud service
 
160625 arduino101
160625 arduino101160625 arduino101
160625 arduino101
 
160603 T客邦7688物聯網實作坊
160603  T客邦7688物聯網實作坊160603  T客邦7688物聯網實作坊
160603 T客邦7688物聯網實作坊
 
2016 CAVEDU物聯網應用發表會 - 開場
2016 CAVEDU物聯網應用發表會 - 開場2016 CAVEDU物聯網應用發表會 - 開場
2016 CAVEDU物聯網應用發表會 - 開場
 
Amazon AWS IoT 利用 AWS IoT 開發智慧家居解決方案
Amazon AWS IoT 利用 AWS IoT 開發智慧家居解決方案Amazon AWS IoT 利用 AWS IoT 開發智慧家居解決方案
Amazon AWS IoT 利用 AWS IoT 開發智慧家居解決方案
 
LinkIt Smart 7688 - a more connected world
LinkIt Smart 7688 - a more connected worldLinkIt Smart 7688 - a more connected world
LinkIt Smart 7688 - a more connected world
 

Processing Tutorial - Create your interactive program in a click~