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
310
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
870
the npm website: a tale of wonder and woe (and wombats!)
rockbot
0
320
fear
rockbot
1
330
Other Decks in Technology
See All in Technology
実践AIガバナンス
asei
3
250
プロダクトの成長に合わせたアーキテクチャの段階的進化と成長痛、そして、ユニットエコノミクスの最適化
kakehashi
PRO
1
110
イオン店舗一覧ページのパフォーマンスチューニング事例 / Performance tuning example for AEON store list page
aeonpeople
2
380
シークレット管理だけじゃない!HashiCorp Vault でデータ暗号化をしよう / Beyond Secret Management! Let's Encrypt Data with HashiCorp Vault
nnstt1
2
130
ソフトウェア エンジニアとしての 姿勢と心構え
recruitengineers
PRO
25
12k
現場が抱える様々な問題は “組織設計上” の問題によって生じていることがある / Team-oriented Organization Design 20250827
mtx2s
7
68k
Jaws-ug名古屋_LT資料_20250829
azoo2024
3
190
トヨタ生産方式(TPS)入門
recruitengineers
PRO
5
1.4k
Vault meets Kubernetes
mochizuki875
0
140
Goss: Faiss向けの新しい本番環境対応 Goバインディング #coefl_go_jp
bengo4com
1
1.4k
【 LLMエンジニアがヒューマノイド開発に挑んでみた 】 - 第104回 Machine Learning 15minutes! Hybrid
soneo1127
0
220
MCPで変わる Amebaデザインシステム「Spindle」の開発
spindle
PRO
1
880
Featured
See All Featured
Why You Should Never Use an ORM
jnunemaker
PRO
59
9.5k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
29
1.9k
YesSQL, Process and Tooling at Scale
rocio
173
14k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
53
2.9k
Balancing Empowerment & Direction
lara
3
600
Typedesign – Prime Four
hannesfritz
42
2.8k
Visualization
eitanlees
147
16k
Measuring & Analyzing Core Web Vitals
bluesmoon
9
570
XXLCSS - How to scale CSS and keep your sanity
sugarenia
248
1.3M
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
110
20k
Code Review Best Practice
trishagee
70
19k
Optimizing for Happiness
mojombo
379
70k
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!