micro:bit植鞣皮套設計師:劉皇模/木莫皮革工作室
micro:bit植鞣皮套DIY手作課程:台灣工藝創客青創基地
範例一、LED顯示
1 2 3 4 5 6 7 8 9 | # Imports go at the top from microbit import * # Code in a 'while True:' loop repeats forever while True: display.show(Image.HEART) sleep(1000) display.scroll('Hello') |
範例二、燈光控制
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # Imports go at the top from microbit import * import neopixel import random # Code in a 'while True:' loop repeats forever while True: display.show(Image.HEART) sleep(1000) display.scroll('Hello') #底板有一顆NeoPixel 接在Pin2 np = neopixel.NeoPixel(pin2, 1) np[0] = (random.randint(1, 255), random.randint(1, 255), random.randint(1, 255)) np.show() |
範例三、振動控制
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # Imports go at the top
from microbit import *
import neopixel
import random
# Code in a 'while True:' loop repeats forever
while True:
display.show(Image.HEART)
sleep(1000)
display.scroll('Hello')
#底板有一顆NeoPixel 接在Pin2
np = neopixel.NeoPixel(pin2, 1)
np[0] = (random.randint(1, 255),
random.randint(1, 255),
random.randint(1, 255))
np.show()
for i in range(1024):
pin1.write_analog(i)
sleep(3)
sleep(1000)
pin1.write_analog(0)
sleep(2000)
|
範例四、音樂(http://www.86x.org/bbc/music.html)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | # Imports go at the top from microbit import * import neopixel import random import music # play Prelude in C. notes = [ 'c4:1', 'e', 'g', 'c5', 'e5', 'g4', 'c5', 'e5', 'c4', 'e', 'g', 'c5', 'e5', 'g4', 'c5', 'e5', 'c4', 'd', 'a', 'd5', 'f5', 'a4', 'd5', 'f5', 'c4', 'd', 'a', 'd5', 'f5', 'a4', 'd5', 'f5', 'b3', 'd4', 'g', 'd5', 'f5', 'g4', 'd5', 'f5', 'b3', 'd4', 'g', 'd5', 'f5', 'g4', 'd5', 'f5', 'c4', 'e', 'g', 'c5', 'e5', 'g4', 'c5', 'e5', 'c4', 'e', 'g', 'c5', 'e5', 'g4', 'c5', 'e5', 'c4', 'e', 'a', 'e5', 'a5', 'a4', 'e5', 'a5', 'c4', 'e', 'a', 'e5', 'a5', 'a4', 'e5', 'a5', 'c4', 'd', 'f#', 'a', 'd5', 'f#4', 'a', 'd5', 'c4', 'd', 'f#', 'a', 'd5', 'f#4', 'a', 'd5', 'b3', 'd4', 'g', 'd5', 'g5', 'g4', 'd5', 'g5', 'b3', 'd4', 'g', 'd5', 'g5', 'g4', 'd5', 'g5', 'b3', 'c4', 'e', 'g', 'c5', 'e4', 'g', 'c5', 'b3', 'c4', 'e', 'g', 'c5', 'e4', 'g', 'c5', 'a3', 'c4', 'e', 'g', 'c5', 'e4', 'g', 'c5', 'a3', 'c4', 'e', 'g', 'c5', 'e4', 'g', 'c5', 'd3', 'a', 'd4', 'f#', 'c5', 'd4', 'f#', 'c5', 'd3', 'a', 'd4', 'f#', 'c5', 'd4', 'f#', 'c5', 'g3', 'b', 'd4', 'g', 'b', 'd', 'g', 'b', 'g3', 'b3', 'd4', 'g', 'b', 'd', 'g', 'b' ] # Code in a 'while True:' loop repeats forever while True: display.show(Image.HEART) sleep(1000) display.scroll('Hello') #底板有一顆NeoPixel 接在Pin2 np = neopixel.NeoPixel(pin2, 1) np[0] = (random.randint(1, 255), random.randint(1, 255), random.randint(1, 255)) np.show() for i in range(1024): pin1.write_analog(i) sleep(3) sleep(1000) pin1.write_analog(0) sleep(2000) music.play(notes) sleep(2000) |
範例四、通訊
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | # Imports go at the top from microbit import * import neopixel import random import music import radio radio.config(group=1) radio.on() # play Prelude in C. notes = [ 'c4:1', 'e', 'g', 'c5', 'e5', 'g4', 'c5', 'e5', 'c4', 'e', 'g', 'c5', 'e5', 'g4', 'c5', 'e5', 'c4', 'd', 'a', 'd5', 'f5', 'a4', 'd5', 'f5', 'c4', 'd', 'a', 'd5', 'f5', 'a4', 'd5', 'f5', 'b3', 'd4', 'g', 'd5', 'f5', 'g4', 'd5', 'f5', 'b3', 'd4', 'g', 'd5', 'f5', 'g4', 'd5', 'f5', 'c4', 'e', 'g', 'c5', 'e5', 'g4', 'c5', 'e5', 'c4', 'e', 'g', 'c5', 'e5', 'g4', 'c5', 'e5', 'c4', 'e', 'a', 'e5', 'a5', 'a4', 'e5', 'a5', 'c4', 'e', 'a', 'e5', 'a5', 'a4', 'e5', 'a5', 'c4', 'd', 'f#', 'a', 'd5', 'f#4', 'a', 'd5', 'c4', 'd', 'f#', 'a', 'd5', 'f#4', 'a', 'd5', 'b3', 'd4', 'g', 'd5', 'g5', 'g4', 'd5', 'g5', 'b3', 'd4', 'g', 'd5', 'g5', 'g4', 'd5', 'g5', 'b3', 'c4', 'e', 'g', 'c5', 'e4', 'g', 'c5', 'b3', 'c4', 'e', 'g', 'c5', 'e4', 'g', 'c5', 'a3', 'c4', 'e', 'g', 'c5', 'e4', 'g', 'c5', 'a3', 'c4', 'e', 'g', 'c5', 'e4', 'g', 'c5', 'd3', 'a', 'd4', 'f#', 'c5', 'd4', 'f#', 'c5', 'd3', 'a', 'd4', 'f#', 'c5', 'd4', 'f#', 'c5', 'g3', 'b', 'd4', 'g', 'b', 'd', 'g', 'b', 'g3', 'b3', 'd4', 'g', 'b', 'd', 'g', 'b' ] display.scroll('Hello') # Code in a 'while True:' loop repeats forever while True: message = radio.receive() if message == 'smile': display.show(Image.HAPPY) for i in range(1024): pin1.write_analog(i) sleep(3) sleep(1000) pin1.write_analog(0) if message == 'heart': display.show(Image.HEART) music.play(notes) if button_a.was_pressed(): radio.send('smile') if button_b.was_pressed(): radio.send('heart') |
沒有留言:
張貼留言