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
66
Inside the Web
devthiago
1
62
Cenário atual do Front-End do ponto de vista de um desenvolvedor
devthiago
0
160
Ecossistema Front-End
devthiago
0
81
React Behind The Scenes
devthiago
1
150
Testando o seu CSS
devthiago
0
140
Repense, Recrie... React
devthiago
0
73
O ecossistema Front-End
devthiago
0
180
Other Decks in Technology
See All in Technology
Trust as Infrastructure
bcantrill
0
350
成長自己責任時代のあるきかた/How to navigate the era of personal responsibility for growth
kwappa
3
290
いま注目しているデータエンジニアリングの論点
ikkimiyazaki
0
620
Azure Well-Architected Framework入門
tomokusaba
1
330
AWSにおけるTrend Vision Oneの効果について
shimak
0
140
『OCI で学ぶクラウドネイティブ 実践 × 理論ガイド』 書籍概要
oracle4engineer
PRO
2
140
自動テストのコストと向き合ってみた
qa
0
200
生成AIとM5Stack / M5 Japan Tour 2025 Autumn 東京
you
PRO
0
230
AWS 잘하는 개발자 되기 - AWS 시작하기: 클라우드 개념부터 IAM까지
kimjaewook
0
110
SoccerNet GSRの紹介と技術応用:選手視点映像を提供するサッカー作戦盤ツール
mixi_engineers
PRO
1
190
動画データのポテンシャルを引き出す! Databricks と AI活用への奮闘記(現在進行形)
databricksjapan
0
160
「Verify with Wallet API」を アプリに導入するために
hinakko
1
250
Featured
See All Featured
Six Lessons from altMBA
skipperchong
28
4k
4 Signs Your Business is Dying
shpigford
185
22k
GraphQLとの向き合い方2022年版
quramy
49
14k
Measuring & Analyzing Core Web Vitals
bluesmoon
9
610
Navigating Team Friction
lara
189
15k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
7
890
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
30
2.9k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
9
970
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
194
16k
How to Ace a Technical Interview
jacobian
280
24k
The Language of Interfaces
destraynor
162
25k
It's Worth the Effort
3n
187
28k
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