telos 0.0.3 → 0.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/Gemfile.lock +1 -1
- data/README.rdoc +16 -0
- data/lib/telos/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6a6538cedd770231aab6a8dbf47a742869784914
|
|
4
|
+
data.tar.gz: a6e4473329fe2564eafe54d34aa6e71d603e3e25
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 66e171ca19fa0e41b7738b0a6685327dbb2244d9ebf6c291657aee9221397f3bb2e97c0938dfcf59d7265322d348a3716282844be10b9bccb5851947d0d1cfd3
|
|
7
|
+
data.tar.gz: 9cdc318116294c7a316791558e56b67ef4e84fb32b03a27c94aaa9979701b8cf828f638bc10c13ddcfd3706ab3370c3d3e50773b28881f25c243ae9156de6764
|
data/Gemfile.lock
CHANGED
data/README.rdoc
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
= Telos ruby gem
|
|
2
|
+
|
|
3
|
+
== Description
|
|
4
|
+
|
|
5
|
+
The telos gem was written to communicate with some Telos Nx12 Talk Show systems. Currently only the basic communication is implemented, without further abstractions.
|
|
6
|
+
|
|
7
|
+
== Usage / Example
|
|
8
|
+
|
|
9
|
+
# Open a new connection to a telos device
|
|
10
|
+
device = Telos::Device.new(host: '192.168.0.5')
|
|
11
|
+
device.connect do
|
|
12
|
+
device.write(Telos::Command::EnumerateShows) # Send EnumerateShows command
|
|
13
|
+
device.read # Read 1 line of Telos output
|
|
14
|
+
device.write(Telos::Command::ConnectToShow, SSN_: 1, SHOW: 'Show 1', PASS: 0) # Connect to a show
|
|
15
|
+
...
|
|
16
|
+
end
|
data/lib/telos/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: telos
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jan De Poorter
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-02-
|
|
11
|
+
date: 2015-02-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -49,6 +49,7 @@ files:
|
|
|
49
49
|
- Gemfile
|
|
50
50
|
- Gemfile.lock
|
|
51
51
|
- LICENSE
|
|
52
|
+
- README.rdoc
|
|
52
53
|
- Rakefile
|
|
53
54
|
- lib/telos.rb
|
|
54
55
|
- lib/telos/device.rb
|