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
Introducing Arduino & Dino - David Grayson
Search
Las Vegas Ruby Group
January 30, 2013
1
34
Introducing Arduino & Dino - David Grayson
Las Vegas Ruby Group
January 30, 2013
Tweet
Share
More Decks by Las Vegas Ruby Group
See All by Las Vegas Ruby Group
Ruby ISO Standard - David Grayson
lvrug
0
120
Windows Automation - Howard Feldman
lvrug
0
59
Separating Your Application from Rails - Brian Hughes
lvrug
0
110
SWIG and Ruby - David Grayson
lvrug
0
67
Practical Object-Oriented Design in Ruby - Charles Jackson
lvrug
3
120
The Hamster Gem - Ryan Mulligan
lvrug
1
82
Varnish+Redis - Russ Smith
lvrug
1
93
Lambdas and Pops - Jan Hettich
lvrug
0
65
Making Good Use of Fonts - Russ Smith
lvrug
1
78
Featured
See All Featured
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
657
60k
Building Better People: How to give real-time feedback that sticks.
wjessup
367
19k
How STYLIGHT went responsive
nonsquared
100
5.6k
Git: the NoSQL Database
bkeepers
PRO
430
65k
Into the Great Unknown - MozCon
thekraken
39
1.9k
Unsuck your backbone
ammeep
671
58k
Why You Should Never Use an ORM
jnunemaker
PRO
58
9.4k
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.3k
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
A Tale of Four Properties
chriscoyier
160
23k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
8
810
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
357
30k
Transcript
Introducing Arduino & Dino: Ruby meets the physical world! David
Grayson Las Vegas Ruby Group, 2013-1-30
Arduino Pictures taken from pololu.com, arduino.cc, sparkfun.com
Pictures taken from sparkfun.com, adafruit.com, pjrc.com, evilmadscientist.com, kicksta
http://blog.tkjelectronics.dk/2012/03/the-balancing-robot/
http://madebyfrutos.wordpress.com/2013/01/12/bobobot/ Pololu Zumo Robot
http://www.indiegogo.com/robobrrd
So many projects... http://www.instructables.com/id/Arduino-Projects/ http://www.pololu.com/resources/communityprojects
Arduino = AVR + USB + IDE
Your PC vs. ATmega328P
$1950.00 $3.16 or less
1,006 GB 32 KB
16 GB 2 KB
2.4 GHz 20 MHz
30 seconds 0.003 seconds
Screen, keyboard, touchpad, USB, ethernet, HDMI, VGA, SD card, DVD
drive, WiFi, Bluetooth
Documentation
LVBots
BIOS, OS, Processes, Threads, (maybe bootloader) Registers, Interrupts
C/C++ avr-gcc
None
Dino Control your Arduino from Ruby!
Dino • Author: Austin Vance • Source: http://github.com/austinbv/dino • RubyConf
2012 Talk
Blink LED require 'dino' board = Dino::Board.new(Dino::TxRx.new) led = Dino::Components::Led.new(pin:
13, board: board) [:on, :off].cycle do |switch| led.send(switch) sleep 0.5 end
Sensor require 'dino' board = Dino::Board.new(Dino::TxRx.new) sensor = Dino::Components::Sensor.new(pin: 'A0',
board: board) on_data = Proc.new do |data| p data end sensor.when_data_received(on_data) sleep
…could be WAY cleaner: require 'dino' board = Dino::Board.new sensor
= board.analog_inputs[0] puts sensor.voltage # => 4.0185546875
Shields & Libraries
Other components...
Button
IR Receiver
RGB Led
Servo
Stepper
http://playground.arduino.cc/interfacing/ruby https://github.com/austinbv/dino http://confreaks.com/videos/1294-rubyconf2012-arduino-the-ruby-way More info about Dino:
None