PD workshop review
Introduction of very important functions in Arduino
Open Arduino software and “PD firmware” file > Then open Pure Data ” arduino-help.pd”> Search for your device and pin and it’s work!
Byte & Bit
bit(位元)是電腦的單位。
電腦只看得懂0和1,一個0或1稱為1個bit(位元)。八個0或1稱為1個byte(位元組),位元組可以代表有意義的一個英文字母或符號。例如:01000001 代表 A ,01000010 代表 B 。
不過平常在電腦上看到的檔案大小或磁碟容量都是以byte(位元組)為單位居多
例如 200G(byte)的硬碟
而網路連線速率卻是用bit(位元)
例如 ADSL 2M(bit)/512(bit)
1 byte(位元組)=8 bit(位元)
1 K(byte) = 1024 byte
1 Mb(yte) = 1024 K(byte)
1 G(byte) = 1024 Mb(yte)
位元是最小的單位,1位元只能表示0、1二種狀態,
2位元,可以表示的四種狀態如下(2^2=4):
00
01
10
11
3位元,可以表示八種狀態如下(2^3=8):
000
001
010
011
100
101
110
111
同理,4位元,可以表示2^4=16
同理,5位元,可以表示2^5=32
同理,6位元,可以表示2^6=64
同理,7位元,可以表示2^7=128
同理,8位元,可以表示2^8=256
因位每個位元組(最小的儲存單位:等於8位元),
所以,每個位元組等於可以表示256種狀態
ref: http://tw.knowledge.yahoo.com/question/question?qid=1608031609179
http://tw.knowledge.yahoo.com/question/question?qid=1507081508245&q=1406010219544&p=%E4%BD%8D%E5%85%83%E7%B5%84
Finally my sememster is over, gonna manage all the information and knowledge i learned before. First there is lots of video and material about Puredata + Arduino. I should started to edit the video i took before and refresh my memories on that.
Use file “arduino-help.pd” , Go to Edit mode started to put 1 Object named it “Metro 500″ and put “Bang” on top and one more “Bang” at the bottom between “Metro 500″ , clik on bang and you can see it’s blinking , so connect to the box under pin mode.

So it’s make sound now!







