saal 0.3.5 → 0.3.6
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/bin/saal_envoy_generate_config +15 -31
- data/bin/saal_envoy_read +7 -10
- data/lib/saal.rb +1 -1
- data/saal.gemspec +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a73d98e715e7b0460b414451f12d729f6c7ba0073a8c9f07fb1312cbf8e3088c
|
4
|
+
data.tar.gz: 5862c4608df8505117888d230f7318cf67b7d1674f9119354bb3cc0c6b9205f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a9691af2407d177050886eb9754d164cea5b76044e14b42db23b176fc5efd1ce84bbc9986582a075c9ed9cd4e2648cc9d9c76c3c9c6543aaa5a5c1dd18a76d6a
|
7
|
+
data.tar.gz: 7f55fb52f23eb87744fe592a879295326d06b61ee046ae39fed2ae093d11c280f2988fb20fa4a0e6e67c48a7314eb93e5f1f2dca0ddc6133108a0f5a350cff32
|
@@ -2,51 +2,35 @@
|
|
2
2
|
|
3
3
|
require File.dirname(__FILE__)+'/../lib/saal.rb'
|
4
4
|
|
5
|
-
if ARGV.size !=
|
6
|
-
$stderr.puts "USAGE: saal_envoy_generate_config <host>
|
5
|
+
if ARGV.size != 2
|
6
|
+
$stderr.puts "USAGE: saal_envoy_generate_config <host> <token>"
|
7
7
|
exit(1)
|
8
8
|
end
|
9
9
|
|
10
|
+
envoy = SAAL::Envoy::Inverters::new(
|
11
|
+
:host => ARGV[0],
|
12
|
+
:token => ARGV[1],
|
13
|
+
)
|
14
|
+
envoy.set_all_inverters!
|
15
|
+
if envoy.inverters.size <= 0
|
16
|
+
$stderr.puts "ERROR: Couldn't find any inverters!"
|
17
|
+
exit 0
|
18
|
+
end
|
19
|
+
|
10
20
|
puts "power:"
|
11
21
|
puts " envoy_power_energy:"
|
12
22
|
puts " host: \"#{ARGV[0]}\""
|
23
|
+
puts " token: \"#{ARGV[1]}\""
|
13
24
|
puts
|
14
25
|
puts "ac:"
|
15
26
|
puts " envoy_ac_quality:"
|
16
27
|
puts " host: \"#{ARGV[0]}\""
|
17
|
-
|
18
|
-
user = "envoy"
|
19
|
-
password = nil
|
20
|
-
|
21
|
-
if ARGV[2]
|
22
|
-
user = ARGV[1]
|
23
|
-
password = ARGV[2]
|
24
|
-
else
|
25
|
-
Net::HTTP.get(ARGV[0], '/home').split("\n").each do |line|
|
26
|
-
if line.include?("serial:")
|
27
|
-
password = line.split('"')[1][-6..-1]
|
28
|
-
end
|
29
|
-
end
|
30
|
-
if !password
|
31
|
-
$stderr.puts "Couldn't find serial number for envoy"
|
32
|
-
exit 2
|
33
|
-
end
|
34
|
-
end
|
35
|
-
|
36
|
-
envoy = SAAL::Envoy::Inverters::new(
|
37
|
-
:host => ARGV[0],
|
38
|
-
:user => user,
|
39
|
-
:password => password,
|
40
|
-
)
|
41
|
-
envoy.set_all_inverters!
|
42
|
-
exit 0 if envoy.inverters.size <= 0
|
43
|
-
|
28
|
+
puts " token: \"#{ARGV[1]}\""
|
44
29
|
puts
|
45
30
|
puts "inverters:"
|
46
31
|
puts " envoy_inverters:"
|
47
32
|
puts " host: \"#{ARGV[0]}\""
|
48
|
-
puts "
|
49
|
-
puts " password: \"#{password}\""
|
33
|
+
puts " token: \"#{ARGV[1]}\""
|
50
34
|
puts " inverters:"
|
51
35
|
envoy.inverters.each do |serial|
|
52
36
|
puts " - #{serial}"
|
data/bin/saal_envoy_read
CHANGED
@@ -2,11 +2,13 @@
|
|
2
2
|
|
3
3
|
require File.dirname(__FILE__)+'/../lib/saal.rb'
|
4
4
|
|
5
|
-
if ARGV.size !=
|
6
|
-
$stderr.puts "USAGE: saal_envoy_read <host> <
|
5
|
+
if ARGV.size != 2
|
6
|
+
$stderr.puts "USAGE: saal_envoy_read <host> <token>"
|
7
7
|
exit(1)
|
8
8
|
end
|
9
9
|
|
10
|
+
config = {:host => ARGV[0], :token => ARGV[1]}
|
11
|
+
|
10
12
|
def fdisp(val)
|
11
13
|
if val
|
12
14
|
'%10.0f' % val
|
@@ -58,7 +60,7 @@ def lratio(vals, name1, name2)
|
|
58
60
|
end
|
59
61
|
end
|
60
62
|
|
61
|
-
ac_quality = SAAL::Envoy::ACQuality::new(
|
63
|
+
ac_quality = SAAL::Envoy::ACQuality::new(config).create_sensors
|
62
64
|
|
63
65
|
puts " ========= AC QUALITY ========"
|
64
66
|
puts " voltage (V) freq (Hz)"
|
@@ -73,7 +75,7 @@ qual_line(ac_quality, "Phase1:", "phase1")
|
|
73
75
|
qual_line(ac_quality, "Phase2:", "phase2")
|
74
76
|
qual_line(ac_quality, "Phase3:", "phase3")
|
75
77
|
|
76
|
-
production = SAAL::Envoy::PowerEnergy::new(
|
78
|
+
production = SAAL::Envoy::PowerEnergy::new(config).create_sensors
|
77
79
|
|
78
80
|
puts ""
|
79
81
|
puts " ============ TRUE POWER (W) ============ ======= TRUE ENERGY (kWh) ======="
|
@@ -134,12 +136,7 @@ pf_line(production, "Phase2:", "phase2", "va")
|
|
134
136
|
pf_line(production, "Phase3:", "phase3", "va")
|
135
137
|
|
136
138
|
puts ""
|
137
|
-
envoy = SAAL::Envoy::Inverters::new(
|
138
|
-
:host => ARGV[0],
|
139
|
-
:user => ARGV[1],
|
140
|
-
:password => ARGV[2],
|
141
|
-
:types => ["w_now", "last_report_date", "w_max"],
|
142
|
-
)
|
139
|
+
envoy = SAAL::Envoy::Inverters::new(config.merge({:types => ["w_now", "last_report_date", "w_max"]}))
|
143
140
|
envoy.set_all_inverters!
|
144
141
|
inverters = envoy.create_sensors
|
145
142
|
puts " Found #{envoy.inverters.size} inverters"
|
data/lib/saal.rb
CHANGED
data/saal.gemspec
CHANGED
@@ -6,7 +6,7 @@ Gem::Specification.new do |s|
|
|
6
6
|
s.platform = Gem::Platform::RUBY
|
7
7
|
|
8
8
|
s.name = 'saal'
|
9
|
-
s.version = '0.3.
|
9
|
+
s.version = '0.3.6'
|
10
10
|
s.date = '2024-02-08'
|
11
11
|
|
12
12
|
s.summary = "Thin abstraction layer for interfacing and recording sensors (currently onewire) and actuators (currently dinrelay)"
|
@@ -32,7 +32,7 @@ EOF
|
|
32
32
|
s.add_runtime_dependency 'ownet', "~>0.2"
|
33
33
|
s.add_runtime_dependency 'mysql2', "~>0.5"
|
34
34
|
s.add_runtime_dependency 'nokogiri', '~>1.8'
|
35
|
-
s.add_runtime_dependency '
|
35
|
+
s.add_runtime_dependency 'openssl', '~>2'
|
36
36
|
|
37
37
|
# = MANIFEST =
|
38
38
|
s.files = %w[
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: saal
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pedro Côrte-Real
|
@@ -53,19 +53,19 @@ dependencies:
|
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '1.8'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
|
-
name:
|
56
|
+
name: openssl
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
61
|
+
version: '2'
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: '
|
68
|
+
version: '2'
|
69
69
|
description: "A daemon and libraries to create an abstraction layer that interfaces
|
70
70
|
with \nsensors and actuators, recording their state, responding to requests \nfor
|
71
71
|
current and historical values, and allowing changes of state.\n"
|