SlideShare ist ein Scribd-Unternehmen logo
1 von 27
Downloaden Sie, um offline zu lesen
micro:bit加速度感測應用
Revised on August 9, 2021
 速度與加速度
 三軸加速度計
 三軸加速度計控制指令
 實作練習
 電子骰子
 運動方向指示器
 傾斜移動控制
 平衡控制遊戲
 地震偵測器
 速度定義為位置相對於時間的變化率,也可以稱為瞬時速度,以強調
與平均速度的區別
 𝑣
⃑
∆
∆
 加速度(m/s2)是速度向量(m/s)對於時間的變化率,描述速度的方向
和大小變化的快慢
 𝑎
⃑
 ⼀段時間內平均的速度變化,稱為平均加速度
 在極短時間內平均的速度變化,稱為瞬時加速度
 𝑣 𝑣 𝑎𝑡 𝑣 :末速,𝑣 :初速,𝑎:加速度,𝑡:時間
速度與加速度 1/2
2
速度與加速度 2/2
https://youtu.be/byngcwjO51U
3
 原理:透過可移動物體在固定電極片移動產生電容值差值,換算物體
重心的位移和方向
 搖晃micro:bit時會聽到「喀啦~喀啦~」的碰撞聲,就是三軸加速度計
內部移動體的碰撞聲
micro:bit三軸加速度計 1/2
4
固定電極片
移動體
固定電極片
X
Z
Y
X
Y Z
 MMA8653FC
micro:bit三軸加速度計 2/2
5
 讀取三軸加速度計三維度中其中⼀個的加速度值,或是所有維度的合
⼒,單位為千分之⼀G⼒ (重⼒加速度G = 9.80665m/s2)
strength3D = Math.sqrt(accelX * accelX + accelY * accelY + accelZ * accelZ)
三軸加速度計控制指令 1/2
6
X (left & right)
Y (back & forth)
Z (up & down)
 動作偵測
 分析加速度計3個軸向數值變化來推斷使用者操作micro:bit之動作
 晃動
 下側偏低
 上側偏低
 正面朝上
 背面朝上
 左側偏低
 右側偏低
 自由掉落
 3G動⼒、6G動⼒、8G動⼒
三軸加速度計控制指令 2/2
7
 初始顯示?,搖晃micro:bit控制板後隨機顯示1~6點,3秒後回復顯
示?
 隨機指令
實作練習 - 電子骰子 1/5
8
實作練習 - 電子骰子 2/5
9
分別編輯骰子點數,置入選擇結構中
 Python程式
def on_gesture_shake():
global Roll
Roll = randint(1, 6)
if Roll == 1:
basic.show_leds("""
. . . . .
. . . . .
. . # . .
. . . . .
. . . . .
""")
elif Roll == 2:
basic.show_leds("""
. . . . .
. . . # .
. . . . .
. # . . .
. . . . .
""")
實作練習 - 電子骰子 3/5
10
elif Roll == 3:
basic.show_leds("""
. . . . #
. . . . .
. . # . .
. . . . .
# . . # .
""")
elif Roll == 4:
basic.show_leds("""
. . . . .
. # . # .
. . . . .
. # . # .
. . . . .
""")
elif Roll == 5:
basic.show_leds("""
. . . . .
. # . # .
. . # . .
. # . # .
. . . . .
""")
實作練習 - 電子骰子 4/5
11
else:
basic.show_leds("""
. # . # .
. . . . .
. # . # .
. . . . .
. # . # .
""")
basic.pause(3000)
basic.show_string("?")
input.on_gesture(Gesture.SHAKE, on_gesture_shake)
Roll = 0
basic.show_string("?")
def on_forever():
pass
basic.forever(on_forever)
實作練習 - 電子骰子 5/5
12
實作練習 - 運動方向指示器 1/5
 顯示micro:bit控制板運動方向
 使用方向箭頭指示micro:bit控制板左右及前後移動,上下移動以大小菱
形表示
13
實作練習 - 運動方向指示器 2/5
14
實作練習 - 運動方向指示器 3/5
15
 Python程式
forward_backward = 0
up_down = 0
left_right = 0
def check_Y():
if forward_backward >= 1200:
basic.show_arrow(ArrowNames.NORTH)
if forward_backward <= -1200:
basic.show_arrow(ArrowNames.SOUTH)
def check_Z():
if up_down >= 100:
basic.show_icon(IconNames.SMALL_DIAMOND)
if up_down <= -2000:
basic.show_icon(IconNames.DIAMOND)
def check_X():
if left_right >= 1200:
basic.show_arrow(ArrowNames.WEST)
if left_right <= -1200:
basic.show_arrow(ArrowNames.EAST)
實作練習 - 運動方向指示器 4/5
16
def on_forever():
global left_right, forward_backward, up_down
left_right = input.acceleration(Dimension.X)
forward_backward = input.acceleration(Dimension.Y)
up_down = input.acceleration(Dimension.Z)
check_X()
check_Y()
check_Z()
basic.forever(on_forever)
實作練習 - 運動方向指示器 5/5
17
 光點(ball)初始位於正中央
 傾斜micro:bit來控制光點往低處移動
實作練習 - 傾斜移動控制 1/2
18
實作練習 - 傾斜移動控制 2/2
19
 光點初始位於正中央
 傾斜micro:bit來控制光點在點矩陣內部移動,每移動⼀格得1分,光
點碰到邊緣則結束遊戲
實作練習 - 平衡控制遊戲 1/5
20
實作練習 - 平衡控制遊戲 2/5
21
實作練習 - 平衡控制遊戲 3/5
22
 Python程式
def moving():
if input.acceleration(Dimension.X) > 150:
ball.change(LedSpriteProperty.X, 1)
score += 1
if input.acceleration(Dimension.X) < -150:
ball.change(LedSpriteProperty.X, -1)
score += 1
if input.acceleration(Dimension.Y) > 150:
ball.change(LedSpriteProperty.Y, 1)
score += 1
if input.acceleration(Dimension.Y) < -150:
ball.change(LedSpriteProperty.Y, -1)
score += 1
def isTouchingEdge():
if ball.is_touching_edge():
game.set_score(score)
game.game_over()
實作練習 - 平衡控制遊戲 4/5
23
ball = game.create_sprite(2, 2)
score = 0
def on_forever():
moving()
isTouchingdge()
basic.pause(200)
basic.forever(on_forever)
實作練習 - 平衡控制遊戲 5/5
24
實作練習 - 地震偵測器 1/3
25
實作練習 - 地震偵測器 2/3
26
實作練習 - 地震偵測器 3/3
27

Weitere ähnliche Inhalte

Was ist angesagt?

11/01 SAS 快速複習
11/01 SAS 快速複習11/01 SAS 快速複習
11/01 SAS 快速複習
景淳 許
 
Adobe photoshop
Adobe photoshopAdobe photoshop
Adobe photoshop
Akhyt
 
Lekts presentation10
Lekts presentation10Lekts presentation10
Lekts presentation10
ganzorigb
 
Fast typemon 2,0
Fast typemon 2,0Fast typemon 2,0
Fast typemon 2,0
dajaaaaaa
 
生產與作業管理
生產與作業管理生產與作業管理
生產與作業管理
5045033
 
運用粒子群最佳化之Fpga模糊控制器設計~電機大師黃聰亮教授演講投影片
運用粒子群最佳化之Fpga模糊控制器設計~電機大師黃聰亮教授演講投影片運用粒子群最佳化之Fpga模糊控制器設計~電機大師黃聰亮教授演講投影片
運用粒子群最佳化之Fpga模糊控制器設計~電機大師黃聰亮教授演講投影片
vincent8899
 

Was ist angesagt? (20)

11/01 SAS 快速複習
11/01 SAS 快速複習11/01 SAS 快速複習
11/01 SAS 快速複習
 
連淡水阿嬤都聽得懂的 機器學習入門 scikit-learn
連淡水阿嬤都聽得懂的機器學習入門 scikit-learn 連淡水阿嬤都聽得懂的機器學習入門 scikit-learn
連淡水阿嬤都聽得懂的 機器學習入門 scikit-learn
 
Micro:bit -- Ch14 array陣列
Micro:bit -- Ch14 array陣列Micro:bit -- Ch14 array陣列
Micro:bit -- Ch14 array陣列
 
Ci prog tolgoi file хичээл 2
Ci prog tolgoi file хичээл 2Ci prog tolgoi file хичээл 2
Ci prog tolgoi file хичээл 2
 
Adobe photoshop
Adobe photoshopAdobe photoshop
Adobe photoshop
 
1
11
1
 
PSIM使い方のヒントとコツ
PSIM使い方のヒントとコツPSIM使い方のヒントとコツ
PSIM使い方のヒントとコツ
 
第2回 配信講義 計算科学技術特論A (2021)
第2回 配信講義 計算科学技術特論A (2021) 第2回 配信講義 計算科学技術特論A (2021)
第2回 配信講義 計算科学技術特論A (2021)
 
Ois lessons4
Ois lessons4Ois lessons4
Ois lessons4
 
surgalt
surgaltsurgalt
surgalt
 
7-3-電路分析
7-3-電路分析7-3-電路分析
7-3-電路分析
 
Lekts presentation10
Lekts presentation10Lekts presentation10
Lekts presentation10
 
Fast typemon 2,0
Fast typemon 2,0Fast typemon 2,0
Fast typemon 2,0
 
LaTeX дээр хурдтай ажиллахад туслах командуудыг
LaTeX дээр хурдтай ажиллахад туслах командуудыгLaTeX дээр хурдтай ажиллахад туслах командуудыг
LaTeX дээр хурдтай ажиллахад туслах командуудыг
 
өгөгдлийн сангийн удирдлага
өгөгдлийн сангийн удирдлагаөгөгдлийн сангийн удирдлага
өгөгдлийн сангийн удирдлага
 
生產與作業管理
生產與作業管理生產與作業管理
生產與作業管理
 
МЗХ-ны Гүйцэтгэх Хорооны 2014 оны 2 дугаар сарын ажлын тайлан
МЗХ-ны Гүйцэтгэх Хорооны 2014 оны 2 дугаар сарын ажлын тайлан МЗХ-ны Гүйцэтгэх Хорооны 2014 оны 2 дугаар сарын ажлын тайлан
МЗХ-ны Гүйцэтгэх Хорооны 2014 оны 2 дугаар сарын ажлын тайлан
 
Lekts 3
Lekts  3Lekts  3
Lekts 3
 
臺灣高中數學講義 - 第一冊 - 數與式
臺灣高中數學講義 - 第一冊 - 數與式臺灣高中數學講義 - 第一冊 - 數與式
臺灣高中數學講義 - 第一冊 - 數與式
 
運用粒子群最佳化之Fpga模糊控制器設計~電機大師黃聰亮教授演講投影片
運用粒子群最佳化之Fpga模糊控制器設計~電機大師黃聰亮教授演講投影片運用粒子群最佳化之Fpga模糊控制器設計~電機大師黃聰亮教授演講投影片
運用粒子群最佳化之Fpga模糊控制器設計~電機大師黃聰亮教授演講投影片
 

Ähnlich wie micro:bit加速度感測應用

Affective Computing and Intelligent Interaction (ACII 2011)
Affective Computing and Intelligent Interaction (ACII 2011)Affective Computing and Intelligent Interaction (ACII 2011)
Affective Computing and Intelligent Interaction (ACII 2011)
Lê Anh
 
Benchmarking Perl (Chicago UniForum 2006)
Benchmarking Perl (Chicago UniForum 2006)Benchmarking Perl (Chicago UniForum 2006)
Benchmarking Perl (Chicago UniForum 2006)
brian d foy
 
Post CtA analyse for the CCP
Post CtA analyse for the CCPPost CtA analyse for the CCP
Post CtA analyse for the CCP
Jeroen Van der Eb
 
Mbd 04 multi-body_simulation_of_earthmoving_equipment_l&t
Mbd 04 multi-body_simulation_of_earthmoving_equipment_l&tMbd 04 multi-body_simulation_of_earthmoving_equipment_l&t
Mbd 04 multi-body_simulation_of_earthmoving_equipment_l&t
Anand Kumar Chinni
 
Day2 Verilog HDL Basic
Day2 Verilog HDL BasicDay2 Verilog HDL Basic
Day2 Verilog HDL Basic
Ron Liu
 
Worst-Case Scheduling of Software Tasks
Worst-Case Scheduling of Software TasksWorst-Case Scheduling of Software Tasks
Worst-Case Scheduling of Software Tasks
Lionel Briand
 

Ähnlich wie micro:bit加速度感測應用 (20)

Affective Computing and Intelligent Interaction (ACII 2011)
Affective Computing and Intelligent Interaction (ACII 2011)Affective Computing and Intelligent Interaction (ACII 2011)
Affective Computing and Intelligent Interaction (ACII 2011)
 
Day 2 slides UNO summer 2010 robotics workshop
Day 2 slides UNO summer 2010 robotics workshopDay 2 slides UNO summer 2010 robotics workshop
Day 2 slides UNO summer 2010 robotics workshop
 
MajesTech-Proposal
MajesTech-ProposalMajesTech-Proposal
MajesTech-Proposal
 
re:mobidyc the overview
re:mobidyc the overviewre:mobidyc the overview
re:mobidyc the overview
 
Benchmarking Perl (Chicago UniForum 2006)
Benchmarking Perl (Chicago UniForum 2006)Benchmarking Perl (Chicago UniForum 2006)
Benchmarking Perl (Chicago UniForum 2006)
 
Motorized pan tilt(Arduino based)
Motorized pan tilt(Arduino based)Motorized pan tilt(Arduino based)
Motorized pan tilt(Arduino based)
 
Campaña Jorge diapositivas_proyecto_cinematica_en_coordenadas_tangenciales_no...
Campaña Jorge diapositivas_proyecto_cinematica_en_coordenadas_tangenciales_no...Campaña Jorge diapositivas_proyecto_cinematica_en_coordenadas_tangenciales_no...
Campaña Jorge diapositivas_proyecto_cinematica_en_coordenadas_tangenciales_no...
 
Post CtA analyse for the CCP
Post CtA analyse for the CCPPost CtA analyse for the CCP
Post CtA analyse for the CCP
 
Wearable Accelerometer Optimal Positions for Human Motion Recognition(LifeTec...
Wearable Accelerometer Optimal Positions for Human Motion Recognition(LifeTec...Wearable Accelerometer Optimal Positions for Human Motion Recognition(LifeTec...
Wearable Accelerometer Optimal Positions for Human Motion Recognition(LifeTec...
 
Mbd 04 multi-body_simulation_of_earthmoving_equipment_l&t
Mbd 04 multi-body_simulation_of_earthmoving_equipment_l&tMbd 04 multi-body_simulation_of_earthmoving_equipment_l&t
Mbd 04 multi-body_simulation_of_earthmoving_equipment_l&t
 
Embedded Programming for Quadcopters
Embedded Programming for QuadcoptersEmbedded Programming for Quadcopters
Embedded Programming for Quadcopters
 
Day2 Verilog HDL Basic
Day2 Verilog HDL BasicDay2 Verilog HDL Basic
Day2 Verilog HDL Basic
 
Benchmarking and PHPBench
Benchmarking and PHPBenchBenchmarking and PHPBench
Benchmarking and PHPBench
 
Smart Room Gesture Control
Smart Room Gesture ControlSmart Room Gesture Control
Smart Room Gesture Control
 
Development of a biomechanical analysis process for use within a sports club
Development of a biomechanical analysis process for use within a sports club  Development of a biomechanical analysis process for use within a sports club
Development of a biomechanical analysis process for use within a sports club
 
µV: An Articulation, Rotation, Scaling, and Translation Invariant (ARST) Mult...
µV: An Articulation, Rotation, Scaling, and Translation Invariant (ARST) Mult...µV: An Articulation, Rotation, Scaling, and Translation Invariant (ARST) Mult...
µV: An Articulation, Rotation, Scaling, and Translation Invariant (ARST) Mult...
 
Worst-Case Scheduling of Software Tasks
Worst-Case Scheduling of Software TasksWorst-Case Scheduling of Software Tasks
Worst-Case Scheduling of Software Tasks
 
DAHO.AM 2015 - Abusing phones to make the internet of things
DAHO.AM 2015 - Abusing phones to make the internet of thingsDAHO.AM 2015 - Abusing phones to make the internet of things
DAHO.AM 2015 - Abusing phones to make the internet of things
 
Human action recognition with kinect using a joint motion descriptor
Human action recognition with kinect using a joint motion descriptorHuman action recognition with kinect using a joint motion descriptor
Human action recognition with kinect using a joint motion descriptor
 
iOS Unit Testing
iOS Unit TestingiOS Unit Testing
iOS Unit Testing
 

Mehr von 吳錫修 (ShyiShiou Wu)

Mehr von 吳錫修 (ShyiShiou Wu) (20)

mbot2.0教學-陀螺儀與三軸加速計應用.pdf
mbot2.0教學-陀螺儀與三軸加速計應用.pdfmbot2.0教學-陀螺儀與三軸加速計應用.pdf
mbot2.0教學-陀螺儀與三軸加速計應用.pdf
 
mbot2.0教學-使用makeblock雲服務.pdf
mbot2.0教學-使用makeblock雲服務.pdfmbot2.0教學-使用makeblock雲服務.pdf
mbot2.0教學-使用makeblock雲服務.pdf
 
mbot2.0教學-局域網路傳輸應用.pdf
mbot2.0教學-局域網路傳輸應用.pdfmbot2.0教學-局域網路傳輸應用.pdf
mbot2.0教學-局域網路傳輸應用.pdf
 
mbot2.0教學-四路顏色感測器應用.pdf
mbot2.0教學-四路顏色感測器應用.pdfmbot2.0教學-四路顏色感測器應用.pdf
mbot2.0教學-四路顏色感測器應用.pdf
 
mbot2.0教學-聲光控制應用.pdf
mbot2.0教學-聲光控制應用.pdfmbot2.0教學-聲光控制應用.pdf
mbot2.0教學-聲光控制應用.pdf
 
mbot2.0教學-光感測器與LED應用.pdf
mbot2.0教學-光感測器與LED應用.pdfmbot2.0教學-光感測器與LED應用.pdf
mbot2.0教學-光感測器與LED應用.pdf
 
mbot2.0教學-超音波感測應用.pdf
mbot2.0教學-超音波感測應用.pdfmbot2.0教學-超音波感測應用.pdf
mbot2.0教學-超音波感測應用.pdf
 
mbot2.0教學-移動控制.pdf
mbot2.0教學-移動控制.pdfmbot2.0教學-移動控制.pdf
mbot2.0教學-移動控制.pdf
 
mbot2.0教學-mblock5開發mBot 2.0應用程式.pdf
mbot2.0教學-mblock5開發mBot 2.0應用程式.pdfmbot2.0教學-mblock5開發mBot 2.0應用程式.pdf
mbot2.0教學-mblock5開發mBot 2.0應用程式.pdf
 
mbot2.0教學-組裝與測試.pdf
mbot2.0教學-組裝與測試.pdfmbot2.0教學-組裝與測試.pdf
mbot2.0教學-組裝與測試.pdf
 
Python元組,字典,集合
Python元組,字典,集合Python元組,字典,集合
Python元組,字典,集合
 
Python函式
Python函式Python函式
Python函式
 
Python串列資料應用
Python串列資料應用Python串列資料應用
Python串列資料應用
 
Python 迴圈作業
Python 迴圈作業Python 迴圈作業
Python 迴圈作業
 
Python分支作業
Python分支作業Python分支作業
Python分支作業
 
Python基本資料運算
Python基本資料運算Python基本資料運算
Python基本資料運算
 
建置Python開發環境
建置Python開發環境建置Python開發環境
建置Python開發環境
 
C語言檔案處理
C語言檔案處理C語言檔案處理
C語言檔案處理
 
C語言列舉與聯合
C語言列舉與聯合C語言列舉與聯合
C語言列舉與聯合
 
C語言結構與串列
C語言結構與串列 C語言結構與串列
C語言結構與串列
 

Kürzlich hochgeladen

Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Kürzlich hochgeladen (20)

Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 

micro:bit加速度感測應用