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
WordPressから ヘッドレスCMSへ! Storyblokへの移行プロセス
nyata
0
340
Oracle Cloud Infrastructure:2025年6月度サービス・アップデート
oracle4engineer
PRO
2
310
asken AI勉強会(Android)
tadashi_sato
0
140
SpringBoot x TestContainerで実現するポータブル自動結合テスト
demaecan
0
120
2025-06-26_Lightning_Talk_for_Lightning_Talks
_hashimo2
2
110
LangSmith×Webhook連携で実現するプロンプトドリブンCI/CD
sergicalsix
1
150
AIとともに進化するエンジニアリング / Engineering-Evolving-with-AI_final.pdf
lycorptech_jp
PRO
0
140
Node-REDのFunctionノードでMCPサーバーの実装を試してみた / Node-RED × MCP 勉強会 vol.1
you
PRO
0
130
Yamla: Rustでつくるリアルタイム性を追求した機械学習基盤 / Yamla: A Rust-Based Machine Learning Platform Pursuing Real-Time Capabilities
lycorptech_jp
PRO
4
170
Zephyr RTOSを使った開発コンペに参加した件
iotengineer22
0
140
React開発にStorybookとCopilotを導入して、爆速でUIを編集・確認する方法
yu_kod
1
100
fukabori.fm 出張版: 売上高617億円と高稼働率を陰で支えた社内ツール開発のあれこれ話 / 20250704 Yoshimasa Iwase & Tomoo Morikawa
shift_evolve
PRO
1
140
Featured
See All Featured
Code Review Best Practice
trishagee
69
18k
GitHub's CSS Performance
jonrohan
1031
460k
Product Roadmaps are Hard
iamctodd
PRO
54
11k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
45
7.5k
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
657
60k
It's Worth the Effort
3n
185
28k
Agile that works and the tools we love
rasmusluckow
329
21k
Making Projects Easy
brettharned
116
6.3k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
194
16k
Gamification - CAS2011
davidbonilla
81
5.3k
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
3.9k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
331
22k
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