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
35
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
60
Separating Your Application from Rails - Brian Hughes
lvrug
0
110
SWIG and Ruby - David Grayson
lvrug
0
68
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
95
Lambdas and Pops - Jan Hettich
lvrug
0
66
Making Good Use of Fonts - Russ Smith
lvrug
1
79
Featured
See All Featured
Building an army of robots
kneath
306
45k
Why Our Code Smells
bkeepers
PRO
336
57k
GraphQLとの向き合い方2022年版
quramy
49
14k
Java REST API Framework Comparison - PWX 2021
mraible
31
8.7k
Into the Great Unknown - MozCon
thekraken
40
1.9k
Six Lessons from altMBA
skipperchong
28
3.9k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
47
9.6k
How To Stay Up To Date on Web Technology
chriscoyier
790
250k
Embracing the Ebb and Flow
colly
86
4.7k
YesSQL, Process and Tooling at Scale
rocio
173
14k
KATA
mclloyd
30
14k
Measuring & Analyzing Core Web Vitals
bluesmoon
7
510
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