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
Sponsored
·
Ship Features Fearlessly
Turn features on and off without deploys. Used by thousands of Ruby developers.
→
Thiago Alves Luiz
July 30, 2016
Technology
0
130
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
69
Inside the Web
devthiago
1
66
Cenário atual do Front-End do ponto de vista de um desenvolvedor
devthiago
0
160
Ecossistema Front-End
devthiago
0
85
React Behind The Scenes
devthiago
1
150
Testando o seu CSS
devthiago
0
140
Repense, Recrie... React
devthiago
0
78
O ecossistema Front-End
devthiago
0
180
Other Decks in Technology
See All in Technology
JAWSDAYS2026_A-6_現場SEが語る 回せるセキュリティ運用~設計で可視化、AIで加速する「楽に回る」運用設計のコツ~
shoki_hata
0
3k
Zero Data Loss Autonomous Recovery Service サービス概要
oracle4engineer
PRO
2
13k
マルチアカウント環境でSecurity Hubの運用!導入の苦労とポイント / JAWS DAYS 2026
genda
0
860
AWSの資格って役に立つの?
tk3fftk
2
360
プラットフォームエンジニアリングはAI時代の開発者をどう救うのか
jacopen
7
3.8k
Lambda Web AdapterでLambdaをWEBフレームワーク利用する
sahou909
0
160
めちゃくちゃ開発するQAエンジニアになって感じたメリットとこれからの課題感
ryuhei0000yamamoto
0
120
エンジニアリングマネージャーの仕事
yuheinakasaka
0
110
20260311 技術SWG活動報告(デジタルアイデンティティ人材育成推進WG Ph2 活動報告会)
oidfj
0
360
OCI技術資料 : コンピュート・サービス 概要
ocise
4
54k
Keycloak を使った SSO で CockroachDB にログインする / CockroachDB SSO with Keycloak
kota2and3kan
0
160
CyberAgentの生成AI戦略 〜変わるものと変わらないもの〜
katayan
0
260
Featured
See All Featured
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
35
2.4k
Visualization
eitanlees
150
17k
Making Projects Easy
brettharned
120
6.6k
Getting science done with accelerated Python computing platforms
jacobtomlinson
2
140
Building Experiences: Design Systems, User Experience, and Full Site Editing
marktimemedia
0
440
Building Applications with DynamoDB
mza
96
7k
Collaborative Software Design: How to facilitate domain modelling decisions
baasie
0
160
More Than Pixels: Becoming A User Experience Designer
marktimemedia
3
350
Claude Code のすすめ
schroneko
67
220k
Site-Speed That Sticks
csswizardry
13
1.1k
Crafting Experiences
bethany
1
89
The SEO identity crisis: Don't let AI make you average
varn
0
420
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