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
Raul Pino
July 15, 2015
Technology
0
50
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
Ensembles of GANs as a Data Augmentation Technique for Alzheimer research
p1nox
0
38
Ensemble of GANs as a Data Augmentation Technique for Alzheimer research
p1nox
0
20
El Dev: Dia 2
p1nox
0
22
El Dev: Dia 1
p1nox
0
43
Learning AI with Van Gogh, Michelena, and Cruz-Diez
p1nox
0
53
Ethereum para programadores Web
p1nox
1
83
Learning AI with Van Gogh, Matta, and Cruz-Diez
p1nox
0
160
Learning AI with Van Gogh, Solar, and Cruz-Diez
p1nox
1
73
Learning AI with Van Gogh, Botero, and Cruz-Diez
p1nox
0
230
Other Decks in Technology
See All in Technology
React Server Componentは 何を解決し何を解決しないのか / What do React Server Components solve, and what do they not solve?
kaminashi
6
1.2k
Symfony in 2025: Scaling to 0
fabpot
2
210
OCI見積もり入門セミナー
oracle4engineer
PRO
0
120
一人QA時代が終わり、 QAチームが立ち上がった話
ma_cho29
0
290
caching_sha2_passwordのはなし
boro1234
0
220
ルートユーザーの活用と管理を徹底的に深掘る
yuobayashi
6
730
銀行でDevOpsを進める理由と実践例 / 20250317 Masaki Iwama
shift_evolve
1
110
データベースで見る『家族アルバム みてね』の変遷 / The Evolution of Family Album Through the Lens of Databases
kohbis
2
650
Redefine_Possible
upsider_tech
0
300
KCD Brazil '25: Enabling Developers with Dapr & Backstage
salaboy
1
130
Tirez profit de Messenger pour améliorer votre architecture
tucksaun
1
150
移行できそうでやりきれなかった 10年超えのシステムを葬るための戦略
ryu955
2
540
Featured
See All Featured
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
7
620
KATA
mclloyd
29
14k
Docker and Python
trallard
44
3.3k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
12
610
Git: the NoSQL Database
bkeepers
PRO
429
65k
Building Your Own Lightsaber
phodgson
104
6.3k
The Language of Interfaces
destraynor
157
24k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
118
51k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
251
21k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
280
13k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
12
1.4k
Thoughts on Productivity
jonyablonski
69
4.5k
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