arduino_ir_remote 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/History.txt +4 -0
- data/README.md +3 -2
- data/arduino_ir_remote.gemspec +2 -1
- data/lib/arduino_ir_remote/version.rb +1 -1
- metadata +9 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 633534d5f2ff931a20109d358904351b0547d689
|
4
|
+
data.tar.gz: 2a12d471651cfb58222d747a9594e72699199afd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec5c1e0ab030de3803d8c63c5d9a1ed89000ef180f0f97cb01679c1f1b283699483d4b15e558a364d3646385bcbb577f2bca8cc7660eda1bfd33da7020dde23a
|
7
|
+
data.tar.gz: c9ae45cfad5390d34fc6834b002c5e01b87ebd3fb4b7d29ae2541f80ca33c2b9fa341d52e0c66fe95faaccb73f6b01e179f33fc545199bf4a4fa385ee32346f7
|
data/History.txt
CHANGED
data/README.md
CHANGED
@@ -20,14 +20,15 @@ Dependencies
|
|
20
20
|
|
21
21
|
- Mac or Linux
|
22
22
|
- Ruby 1.8.7 ~ 2.0.0
|
23
|
-
- [Arduino](http://arduino.cc) Micro or Leonard
|
23
|
+
- [Arduino](http://arduino.cc), testing on Micro or Leonard
|
24
24
|
- [38KHz IR Receiver](http://akizukidenshi.com/catalog/g/gI-00614/)
|
25
25
|
- IR LED
|
26
26
|
- [Temperature Sensor LM35DZ](http://akizukidenshi.com/catalog/g/gI-00116/)
|
27
27
|
|
28
28
|
### Setup Arduino
|
29
29
|
|
30
|
-
- Firmware
|
30
|
+
- Arduino Firmware
|
31
|
+
- `arduino` directory in this repository
|
31
32
|
- https://github.com/shokai/arduino_ir_remote/blob/master/arduino/arduino.ino
|
32
33
|
- IR LED
|
33
34
|
- Digital PIN 12
|
data/arduino_ir_remote.gemspec
CHANGED
@@ -8,8 +8,9 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.version = ArduinoIrRemote::VERSION
|
9
9
|
spec.authors = ["Sho Hashimoto"]
|
10
10
|
spec.email = ["hashimoto@shokai.org"]
|
11
|
-
spec.description = %
|
11
|
+
spec.description = %Q{This Rubygem provides a wrapper for IR-Learning-Remote that has been built using the Arduino.\nPlease setup Arduino -> https://github.com/shokai/arduino_ir_remote}
|
12
12
|
spec.summary = spec.description
|
13
|
+
spec.post_install_message = spec.description
|
13
14
|
spec.homepage = "https://github.com/shokai/arduino_ir_remote"
|
14
15
|
spec.license = "MIT"
|
15
16
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: arduino_ir_remote
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sho Hashimoto
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-08-
|
11
|
+
date: 2013-08-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: serialport
|
@@ -108,8 +108,9 @@ dependencies:
|
|
108
108
|
- - '>='
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '0'
|
111
|
-
description:
|
112
|
-
built using the Arduino.
|
111
|
+
description: |-
|
112
|
+
This Rubygem provides a wrapper for IR-Learning-Remote that has been built using the Arduino.
|
113
|
+
Please setup Arduino -> https://github.com/shokai/arduino_ir_remote
|
113
114
|
email:
|
114
115
|
- hashimoto@shokai.org
|
115
116
|
executables:
|
@@ -138,7 +139,9 @@ homepage: https://github.com/shokai/arduino_ir_remote
|
|
138
139
|
licenses:
|
139
140
|
- MIT
|
140
141
|
metadata: {}
|
141
|
-
post_install_message:
|
142
|
+
post_install_message: |-
|
143
|
+
This Rubygem provides a wrapper for IR-Learning-Remote that has been built using the Arduino.
|
144
|
+
Please setup Arduino -> https://github.com/shokai/arduino_ir_remote
|
142
145
|
rdoc_options: []
|
143
146
|
require_paths:
|
144
147
|
- lib
|
@@ -158,7 +161,7 @@ rubygems_version: 2.0.5
|
|
158
161
|
signing_key:
|
159
162
|
specification_version: 4
|
160
163
|
summary: This Rubygem provides a wrapper for IR-Learning-Remote that has been built
|
161
|
-
using the Arduino. https://github.com/shokai/arduino_ir_remote
|
164
|
+
using the Arduino. Please setup Arduino -> https://github.com/shokai/arduino_ir_remote
|
162
165
|
test_files:
|
163
166
|
- test/test_helper.rb
|
164
167
|
- test/test_ir_remote.rb
|