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
250905 大吉祥寺.pm 2025 前夜祭 「プログラミングに出会って20年、『今』が1番楽しい」
msykd
PRO
1
980
研究開発と製品開発、両利きのロボティクス
youtalk
1
530
未経験者・初心者に贈る!40分でわかるAndroidアプリ開発の今と大事なポイント
operando
5
730
Django's GeneratedField by example - DjangoCon US 2025
pauloxnet
0
150
LLMを搭載したプロダクトの品質保証の模索と学び
qa
0
1.1k
プラットフォーム転換期におけるGitHub Copilot活用〜Coding agentがそれを加速するか〜 / Leveraging GitHub Copilot During Platform Transition Periods
aeonpeople
1
210
現場で効くClaude Code ─ 最新動向と企業導入
takaakikakei
1
260
Aurora DSQLはサーバーレスアーキテクチャの常識を変えるのか
iwatatomoya
1
1.1k
Modern Linux
oracle4engineer
PRO
0
150
slog.Handlerのよくある実装ミス
sakiengineer
4
420
Terraformで構築する セルフサービス型データプラットフォーム / terraform-self-service-data-platform
pei0804
1
190
AIエージェントで90秒の広告動画を制作!台本・音声・映像・編集をつなぐAWS最新アーキテクチャの実践
nasuvitz
3
320
Featured
See All Featured
How To Stay Up To Date on Web Technology
chriscoyier
790
250k
Statistics for Hackers
jakevdp
799
220k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
31
2.2k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
358
30k
How STYLIGHT went responsive
nonsquared
100
5.8k
Faster Mobile Websites
deanohume
309
31k
GraphQLとの向き合い方2022年版
quramy
49
14k
Building a Modern Day E-commerce SEO Strategy
aleyda
43
7.6k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
33
2.4k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
667
120k
Raft: Consensus for Rubyists
vanstee
140
7.1k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
29
2.9k
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!