saal 0.3.5 → 0.3.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '097e00e7d501d49e8b411d07a6a7eff6afe0adf220c3e1757304428c4cc059f1'
4
- data.tar.gz: 398f11226d5a182aa92417448afd7b3adf0e6a3d1ab120b8f903eb952e6c131b
3
+ metadata.gz: a73d98e715e7b0460b414451f12d729f6c7ba0073a8c9f07fb1312cbf8e3088c
4
+ data.tar.gz: 5862c4608df8505117888d230f7318cf67b7d1674f9119354bb3cc0c6b9205f9
5
5
  SHA512:
6
- metadata.gz: ce014accc32521fb1fad84ed552fe92d6ed3798aef83b30769b03244703d80c205d5463c5ebf9b5ad0fff418663d3293add9291d7344b51db4201a634ee0308e
7
- data.tar.gz: 3aaeb5d0825733dd3e87d4eb9fb9900f6f7cb5a78c9be3a8168ba7b7afef7ce379d51d8e4a267c59f1fcce86e33075c6a55eb18cfcba65932d138d718f534dd0
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 != 1 && ARGV.size != 3
6
- $stderr.puts "USAGE: saal_envoy_generate_config <host> [<user> <password>]"
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 " user: \"#{user}\""
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 != 3
6
- $stderr.puts "USAGE: saal_envoy_read <host> <user> <password>"
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(:host => ARGV[0]).create_sensors
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(:host => ARGV[0]).create_sensors
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
@@ -10,7 +10,7 @@ module SAAL
10
10
  DBCONF = CONFDIR+"database.yml"
11
11
  CHARTSCONF = CONFDIR+"charts.yml"
12
12
 
13
- VERSION = '0.3.5'
13
+ VERSION = '0.3.6'
14
14
  end
15
15
 
16
16
  require File.dirname(__FILE__)+'/dbstore.rb'
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.5'
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 'net-http-digest_auth', '~>1.4'
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.5
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: net-http-digest_auth
56
+ name: openssl
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '1.4'
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: '1.4'
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"