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
slog.Handlerのよくある実装ミス
sakiengineer
4
470
【NoMapsTECH 2025】AI Edge Computing Workshop
akit37
0
230
使いやすいプラットフォームの作り方 ー LINEヤフーのKubernetes基盤に学ぶ理論と実践
lycorptech_jp
PRO
0
120
これでもう迷わない!Jetpack Composeの書き方実践ガイド
zozotech
PRO
0
1.1k
Aurora DSQLはサーバーレスアーキテクチャの常識を変えるのか
iwatatomoya
1
1.2k
[ JAWS-UG 東京 CommunityBuilders Night #2 ]SlackとAmazon Q Developerで 運用効率化を模索する
sh_fk2
3
460
会社紹介資料 / Sansan Company Profile
sansan33
PRO
6
380k
AI時代を生き抜くエンジニアキャリアの築き方 (AI-Native 時代、エンジニアという道は 「最大の挑戦の場」となる) / Building an Engineering Career to Thrive in the Age of AI (In the AI-Native Era, the Path of Engineering Becomes the Ultimate Arena of Challenge)
jeongjaesoon
0
240
現場で効くClaude Code ─ 最新動向と企業導入
takaakikakei
1
260
要件定義・デザインフェーズでもAIを活用して、コミュニケーションの密度を高める
kazukihayase
0
120
Platform開発が先行する Platform Engineeringの違和感
kintotechdev
4
580
dbt開発 with Claude Codeのためのガードレール設計
10xinc
2
1.3k
Featured
See All Featured
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
507
140k
Why You Should Never Use an ORM
jnunemaker
PRO
59
9.5k
Become a Pro
speakerdeck
PRO
29
5.5k
Making the Leap to Tech Lead
cromwellryan
135
9.5k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
32
1.6k
How To Stay Up To Date on Web Technology
chriscoyier
790
250k
The Language of Interfaces
destraynor
161
25k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
53
2.9k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
44
2.5k
What’s in a name? Adding method to the madness
productmarketing
PRO
23
3.7k
Facilitating Awesome Meetings
lara
55
6.5k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
35
3.1k
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