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
190
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
350
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
事業開発におけるDify活用事例
kentarofujii
5
1.5k
あなたの知らない Linuxカーネル脆弱性の世界
recruitengineers
PRO
3
160
デザインとエンジニアリングの架け橋を目指す OPTiMのデザインシステム「nucleus」の軌跡と広げ方
optim
0
120
Dylib Hijacking on macOS: Dead or Alive?
patrickwardle
0
480
OpenTelemetry が拡げる Gemini CLI の可観測性
phaya72
2
2.3k
Azure Well-Architected Framework入門
tomokusaba
1
130
AWS DMS で SQL Server を移行してみた/aws-dms-sql-server-migration
emiki
0
240
もう外には出ない。より快適なフルリモート環境を目指して
mottyzzz
13
11k
Observability — Extending Into Incident Response
nari_ex
1
450
オブザーバビリティと育てた ID管理・認証認可基盤の歩み / The Journey of an ID Management, Authentication, and Authorization Platform Nurtured with Observability
kaminashi
1
720
[re:Inent2025事前勉強会(有志で開催)] re:Inventで見つけた人生をちょっと変えるコツ
sh_fk2
0
110
MCP ✖️ Apps SDKを触ってみた
hisuzuya
0
370
Featured
See All Featured
BBQ
matthewcrist
89
9.9k
jQuery: Nuts, Bolts and Bling
dougneiner
65
7.9k
Code Reviewing Like a Champion
maltzj
526
40k
Reflections from 52 weeks, 52 projects
jeffersonlam
353
21k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
31
9.7k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
31
2.6k
Building Flexible Design Systems
yeseniaperezcruz
329
39k
Building an army of robots
kneath
305
46k
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
36
6.1k
Fireside Chat
paigeccino
41
3.7k
Building a Modern Day E-commerce SEO Strategy
aleyda
44
7.8k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
16
1.7k
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!