blinky-cloud 1.0.0 → 1.1.0
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.
- checksums.yaml +4 -4
- data/README.md +45 -0
- data/lib/blinky_cloud/version.rb +1 -1
- data/lib/blinky_cloud.rb +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 62d6548d66d95a444877e91f704af1596f8d9eca
|
|
4
|
+
data.tar.gz: 5e537aae39be06c91fceed6812a86010f9b03f97
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fb7a4cd068f50bd14cbf30b753d600bf8d16357a5e56a0532d2515f0167717a2bfa8712f2d177c1507d42a995807ffcbc44066deef2248055fbaf33050a1f51a
|
|
7
|
+
data.tar.gz: 9584e175806be324a669cf14f2b049d1f27f2f1ee68e57f21539d80f06f5b9cf7b615fdfd72799d2bb2ed7473439f0111f2dcbc834ecd068ded157dcc666fc58
|
data/README.md
CHANGED
|
@@ -2,3 +2,48 @@ blinky-cloud
|
|
|
2
2
|
============
|
|
3
3
|
|
|
4
4
|
Beowulf cluster for BlinkyTape
|
|
5
|
+
|
|
6
|
+
Requirements
|
|
7
|
+
============
|
|
8
|
+
|
|
9
|
+
* ruby
|
|
10
|
+
* a [blinky tape](http://blinkinlabs.com/blinkytape/)
|
|
11
|
+
|
|
12
|
+
Installation
|
|
13
|
+
============
|
|
14
|
+
|
|
15
|
+
`gem install blinky-cloud`
|
|
16
|
+
|
|
17
|
+
Command Line Usage
|
|
18
|
+
==================
|
|
19
|
+
|
|
20
|
+
As a listener:
|
|
21
|
+
|
|
22
|
+
1. Plug in your blinky tape
|
|
23
|
+
1. run `blinky-cloud-listen`
|
|
24
|
+
|
|
25
|
+
As a broadcaster:
|
|
26
|
+
|
|
27
|
+
1. run `blinky-cloud-broadcast` passing the characters you wish to send to the
|
|
28
|
+
blinky tape
|
|
29
|
+
|
|
30
|
+
Talking to Blinky Tape
|
|
31
|
+
----------------------
|
|
32
|
+
|
|
33
|
+
Flashing Green:
|
|
34
|
+
|
|
35
|
+
`blinky-cloud-broadcast fg`
|
|
36
|
+
|
|
37
|
+
Pulsing Blue:
|
|
38
|
+
|
|
39
|
+
`blinky-cloud-broadcast pb`
|
|
40
|
+
|
|
41
|
+
Solid White:
|
|
42
|
+
|
|
43
|
+
`blinky-cloud-broadcast sw`
|
|
44
|
+
|
|
45
|
+
Set Brightness to 50%:
|
|
46
|
+
|
|
47
|
+
`blinky-cloud-broadcast 5`
|
|
48
|
+
|
|
49
|
+
For more commands, see the [blinky tape test status README](https://github.com/integrum/blinky-tape-test-status)
|
data/lib/blinky_cloud/version.rb
CHANGED
data/lib/blinky_cloud.rb
CHANGED