arduino_firmata 0.2.3 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +4 -0
- data/README.md +11 -1
- data/lib/arduino_firmata/arduino.rb +1 -1
- data/lib/arduino_firmata/version.rb +1 -1
- metadata +2 -2
data/History.txt
CHANGED
data/README.md
CHANGED
@@ -14,13 +14,23 @@ Install
|
|
14
14
|
Requirements
|
15
15
|
------------
|
16
16
|
|
17
|
-
* Ruby 1.8.7
|
17
|
+
* Ruby 1.8.7 or 1.9.2 or 1.9.3 or 2.0.0
|
18
18
|
* Arduino (http://arduino.cc)
|
19
19
|
* testing with Arduino Duemillanove, UNO, Micro, Seeduino v2.
|
20
20
|
* Arduino Standard Firmata v2.2
|
21
21
|
* Arduino IDE -> [File] -> [Examples] -> [Firmata] -> [StandardFirmata]
|
22
22
|
|
23
23
|
|
24
|
+
ArduinoFirmata Command
|
25
|
+
----------------------
|
26
|
+
|
27
|
+
% arduino_firmata --help
|
28
|
+
% arduino_firmata --list
|
29
|
+
% arduino_firmata digital_write 13, true
|
30
|
+
% arduino_firmata analog_read 0
|
31
|
+
% arduino_firmata servo_write 9, 145
|
32
|
+
|
33
|
+
|
24
34
|
Synopsis
|
25
35
|
--------
|
26
36
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: arduino_firmata
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-03-08 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: serialport
|