Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Web controlled ArDrone Basics
Search
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Raul Pino
July 15, 2015
Technology
0
56
Web controlled ArDrone Basics
axioms-play-ardrone = ArDrone + Node.js + Socket.io + WiFi + Bluetooth + Web
Raul Pino
July 15, 2015
Tweet
Share
More Decks by Raul Pino
See All by Raul Pino
Red Teaming Latent Spaces: A Hands-On Security Workshop
p1nox
0
23
Red Teaming Latent Spaces & Protecting LLM apps
p1nox
0
140
Beyond the Cloud: On-premise Orchestration for Open-source LLMs
p1nox
0
93
Ensembles of GANs as a Data Augmentation Technique for Alzheimer research
p1nox
0
60
Ensemble of GANs as a Data Augmentation Technique for Alzheimer research
p1nox
0
41
El Dev: Dia 2
p1nox
0
37
El Dev: Dia 1
p1nox
0
58
Learning AI with Van Gogh, Michelena, and Cruz-Diez
p1nox
0
67
Ethereum para programadores Web
p1nox
1
97
Other Decks in Technology
See All in Technology
Oracle Cloud Infrastructure:2026年3月度サービス・アップデート
oracle4engineer
PRO
0
160
来期の評価で変えようと思っていること 〜AI時代に変わること・変わらないこと〜
estie
0
120
20260323_データ分析基盤でGeminiを使う話
1210yuichi0
0
190
AI時代のオンプレ-クラウドキャリアチェンジ考
yuu0w0yuu
0
600
QA組織のAI戦略とAIテスト設計システムAITASの実践
sansantech
PRO
1
250
JEDAI認定プログラム JEDAI Order 2026 受賞者一覧 / JEDAI Order 2026 Winners
databricksjapan
0
400
昔話で振り返るAWSの歩み ~S3誕生から20年、クラウドはどう進化したのか~
nrinetcom
PRO
0
120
FlutterでPiP再生を実装した話
s9a17
0
230
契約書からの情報抽出を行うLLMのスループットを、バッチ処理を用いて最大40%改善した話
sansantech
PRO
3
320
私がよく使うMCPサーバー3選と社内で安全に活用する方法
kintotechdev
0
140
Bill One 開発エンジニア 紹介資料
sansan33
PRO
5
18k
DDD×仕様駆動で回す高品質開発のプロセス設計
littlehands
6
2.7k
Featured
See All Featured
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
199
73k
Discover your Explorer Soul
emna__ayadi
2
1.1k
[RailsConf 2023] Rails as a piece of cake
palkan
59
6.4k
Stewardship and Sustainability of Urban and Community Forests
pwiseman
0
160
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
122
21k
Code Reviewing Like a Champion
maltzj
528
40k
Leveraging LLMs for student feedback in introductory data science courses - posit::conf(2025)
minecr
1
210
Bash Introduction
62gerente
615
210k
Digital Ethics as a Driver of Design Innovation
axbom
PRO
1
240
Design in an AI World
tapps
0
180
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
32
2.6k
WENDY [Excerpt]
tessaabrams
9
37k
Transcript
ArDrone Basics axioms-play-ardrone = ArDrone + Node.js + Socket.io +
WiFi + Bluetooth + Web © Axiom Zen Team, 2015 1
The ArDrone 2 © Axiom Zen Team, 2015 2
Features • 720p - 30FPS - H264 encoding base profile
camera. • AR.FreeFlight app to control it. • 2 cameras in the bottom to measure altitude and near objects. • WiFi connection to devices. © Axiom Zen Team, 2015 3
Basic Architecture • Network protocol through wifi. • UDP or
TCP packets. © Axiom Zen Team, 2015 4
Basic Usage F*** easy! http://www.nodecopter.com var arDrone = require('ar-drone'); var
client = arDrone.createClient(); client.takeoff(); client .after(5000, function() { this.clockwise(0.5); }) .after(3000, function() { this.animate('flipLeft', 15); }) .after(1000, function() { this.stop(); this.land(); }); © Axiom Zen Team, 2015 5
Our Architecture • Node.js: Audience Server - Admin Server •
Socket.io: Listening and firing events from audience to admin server. • Web: Audience page serving basic joystick. Admin page showing results in realtime. Communication flow: Phone -> WiFi - > Audience Server -> Bluetooth -> Admin Server -> WiFi -> ArDrone © Axiom Zen Team, 2015 6
Test flight :D Go to: • WiFi "Axiom plays AR
Drone" • 192.168.1.190:8080 © Axiom Zen Team, 2015 7
Axiom Zen Estamos contratando! http://www.axiomzen.co © Axiom Zen Team, 2015
8