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
Johnny Five for noobs
Search
Thiago Alves Luiz
July 30, 2016
Technology
0
120
Johnny Five for noobs
Thiago Alves Luiz
July 30, 2016
Tweet
Share
More Decks by Thiago Alves Luiz
See All by Thiago Alves Luiz
Muito prazer! Mercado de Trabalho de TI
devthiago
0
140
How to enjoy WebVR right now
devthiago
0
65
Inside the Web
devthiago
1
61
Cenário atual do Front-End do ponto de vista de um desenvolvedor
devthiago
0
150
Ecossistema Front-End
devthiago
0
80
React Behind The Scenes
devthiago
1
140
Testando o seu CSS
devthiago
0
140
Repense, Recrie... React
devthiago
0
71
O ecossistema Front-End
devthiago
0
170
Other Decks in Technology
See All in Technology
生成AIをテストプロセスに活用し"よう"としている話 #jasstnano
makky_tyuyan
0
160
Copilot Agentを普段使いしてわかった、バックエンド開発で使えるTips
ykagano
1
1.1k
Nonaka Sensei
kawaguti
PRO
3
680
評価の納得感を2段階高める「構造化フィードバック」
aloerina
1
160
Securing your Lambda 101
chillzprezi
0
270
IIWレポートからみるID業界で話題のMCP
fujie
0
210
DB 醬,嗨!哪泥嘎斯基?
line_developers_tw
PRO
0
160
TerraformをSaaSで使うとAzureの運用がこんなに楽ちん!HCP Terraformって何?
mnakabayashi
0
130
脅威をモデリングしてMCPのセキュリティ対策を考えよう
flatt_security
4
1.6k
型システムを知りたい人のための型検査器作成入門
mame
15
3.8k
マルチテナント+マルチプロダクト SaaS への AI Agent の組み込み方
kworkdev
PRO
2
330
Model Mondays S2E01: Advanced Reasoning
nitya
0
350
Featured
See All Featured
Unsuck your backbone
ammeep
671
58k
Fireside Chat
paigeccino
37
3.5k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
507
140k
Raft: Consensus for Rubyists
vanstee
139
7k
GitHub's CSS Performance
jonrohan
1031
460k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
161
15k
GraphQLとの向き合い方2022年版
quramy
46
14k
Into the Great Unknown - MozCon
thekraken
39
1.8k
Producing Creativity
orderedlist
PRO
346
40k
The Invisible Side of Design
smashingmag
299
51k
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
Git: the NoSQL Database
bkeepers
PRO
430
65k
Transcript
Johnny Five for noobs Thiago Alves @taltk9
Thiago Alves Luiz FrontEnd Developer @taltk9 /taltk9
codeminer42.com
[email protected]
This talk is not about teach: · Johnny Five ·
Arduino
None
Newbie, or noob, is a slang term for a novice
or somebody inexperienced in any activity. — Wikipedia
None
! robots
None
None
! noob in robotics
Robotics ! · Learn about eletronics · Know a low
level programming language
just for fun
None
Firmata protocol
http://johnny-five.io
Arduino void setup() { pinMode(13, OUTPUT); } void loop() {
digitalWrite(13, HIGH); delay(1000); digitalWrite(13, LOW); delay(1000); }
Johnny Five var five = require('johnny-five'); var board = new
five.Board(); board.on('ready', function() { var led = new five.Led(13); led.blink(); });
How I learned · What's a protoboard? · Why I
need a resistor? · Some tutorials
Protoboard
Protoboard
Resistor
Resistor
Read tutorials Remember: you are a noob
DEMO TIME
That's all folks! @taltk9