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
170
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
150
Engineering of Craft
rockbot
0
240
The Beauty of Bad Code
rockbot
1
160
The Beauty of Bad Code
rockbot
4
510
Evolution of a Web Application
rockbot
1
930
Wombat-Driven Understanding: an interactive guide to using npm
rockbot
0
290
Wombat-Driven Understanding: An Interactive Guide To Using npm
rockbot
0
780
the npm website: a tale of wonder and woe (and wombats!)
rockbot
0
290
fear
rockbot
1
300
Other Decks in Technology
See All in Technology
IBC 2024 動画技術関連レポート / IBC 2024 Report
cyberagentdevelopers
PRO
0
110
強いチームと開発生産性
onk
PRO
34
11k
オープンソースAIとは何か? --「オープンソースAIの定義 v1.0」詳細解説
shujisado
7
810
The Rise of LLMOps
asei
7
1.4k
障害対応指揮の意思決定と情報共有における価値観 / Waroom Meetup #2
arthur1
5
470
AIチャットボット開発への生成AI活用
ryomrt
0
170
Terraform Stacks入門 #HashiTalks
msato
0
350
Amazon Personalizeのレコメンドシステム構築、実際何するの?〜大体10分で具体的なイメージをつかむ〜
kniino
1
100
Why App Signing Matters for Your Android Apps - Android Bangkok Conference 2024
akexorcist
0
120
[CV勉強会@関東 ECCV2024 読み会] オンラインマッピング x トラッキング MapTracker: Tracking with Strided Memory Fusion for Consistent Vector HD Mapping (Chen+, ECCV24)
abemii
0
220
New Relicを活用したSREの最初のステップ / NRUG OKINAWA VOL.3
isaoshimizu
2
590
Lambda10周年!Lambdaは何をもたらしたか
smt7174
2
110
Featured
See All Featured
RailsConf 2023
tenderlove
29
900
VelocityConf: Rendering Performance Case Studies
addyosmani
325
24k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
665
120k
Done Done
chrislema
181
16k
We Have a Design System, Now What?
morganepeng
50
7.2k
The Cult of Friendly URLs
andyhume
78
6k
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
27
4.3k
Facilitating Awesome Meetings
lara
50
6.1k
For a Future-Friendly Web
brad_frost
175
9.4k
Unsuck your backbone
ammeep
668
57k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
28
9.1k
GraphQLとの向き合い方2022年版
quramy
43
13k
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!