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
Women Who Code - NodeBots
Search
Raquel Vélez
December 12, 2013
Technology
0
180
Women Who Code - NodeBots
A beginner's look at nodebots!
Raquel Vélez
December 12, 2013
Tweet
Share
More Decks by Raquel Vélez
See All by Raquel Vélez
Engineering of Craft - Let's Sketch Tech
rockbot
0
170
Engineering of Craft
rockbot
0
300
The Beauty of Bad Code
rockbot
1
170
The Beauty of Bad Code
rockbot
4
540
Evolution of a Web Application
rockbot
1
1k
Wombat-Driven Understanding: an interactive guide to using npm
rockbot
0
340
Wombat-Driven Understanding: An Interactive Guide To Using npm
rockbot
0
850
the npm website: a tale of wonder and woe (and wombats!)
rockbot
0
320
fear
rockbot
1
320
Other Decks in Technology
See All in Technology
PHPでWebブラウザのレンダリングエンジンを実装する
dip_tech
PRO
0
210
解析の定理証明実践@Lean 4
dec9ue
0
180
AWS Organizations 新機能!マルチパーティ承認の紹介
yhana
1
130
~宇宙最速~2025年AWS Summit レポート
satodesu
1
1.9k
マーケットプレイス版Oracle WebCenter Content For OCI
oracle4engineer
PRO
3
910
Understanding_Thread_Tuning_for_Inference_Servers_of_Deep_Models.pdf
lycorptech_jp
PRO
0
140
監視のこれまでとこれから/sakura monitoring seminar 2025
fujiwara3
11
4k
標準技術と独自システムで作る「つらくない」SaaS アカウント管理 / Effortless SaaS Account Management with Standard Technologies & Custom Systems
yuyatakeyama
3
1.3k
Yamla: Rustでつくるリアルタイム性を追求した機械学習基盤 / Yamla: A Rust-Based Machine Learning Platform Pursuing Real-Time Capabilities
lycorptech_jp
PRO
4
140
セキュリティの民主化は何故必要なのか_AWS WAF 運用の 10 の苦悩から学ぶ
yoh
1
190
20250625 Snowflake Summit 2025活用事例 レポート / Nowcast Snowflake Summit 2025 Case Study Report
kkuv
1
330
プロダクトエンジニアリング組織への歩み、その現在地 / Our journey to becoming a product engineering organization
hiro_torii
0
130
Featured
See All Featured
Adopting Sorbet at Scale
ufuk
77
9.4k
Site-Speed That Sticks
csswizardry
10
660
GitHub's CSS Performance
jonrohan
1031
460k
Facilitating Awesome Meetings
lara
54
6.4k
Reflections from 52 weeks, 52 projects
jeffersonlam
351
20k
Making the Leap to Tech Lead
cromwellryan
134
9.4k
How to Think Like a Performance Engineer
csswizardry
24
1.7k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
507
140k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
233
17k
Visualization
eitanlees
146
16k
YesSQL, Process and Tooling at Scale
rocio
173
14k
How GitHub (no longer) Works
holman
314
140k
Transcript
Raquel Vélez Sauce Labs @rockbot NodeBots!
You will need: node.js && npm an Arduino UNO an
LED, a 10kΩ resistor, a button, jumper wires a breadboard
npm install johnny-five
None
var five = require("johnny-five"); five.Board().on("ready", function() { // "strobe" an
led in 1000ms on-off phases five.Led(13).strobe(1000); });
None
var five = require("johnny-five"), button, led; five.Board().on("ready", function() { button
= new five.Button(8); led = new five.Led(13); button.on("down", function() { led.on(); }); button.on("up", function() { led.off(); }); });
With much practice, you too can create:
Questions?
Wanna play? NodeBots Meetup 12/19 at 5:30pm at Heroku! http://lanyrd.com/2013/nodebotssf-december/
Raquel Vélez
[email protected]
@rockbot Thank You!