cycle_analyst_logger 0.2.2 → 0.2.3

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
  SHA1:
3
- metadata.gz: 794d9286b6d8777aba1339ca41cf835a77b02c04
4
- data.tar.gz: a94cb42629de377f30ba349706deaf433b072161
3
+ metadata.gz: aa99c57d5a7f7847435d357af10d11509fd73c02
4
+ data.tar.gz: b6a2f5962e3f5b42306a2b8988bd307a25c75b37
5
5
  SHA512:
6
- metadata.gz: 31c14793e8830f262ecf9ccd86ca618a52c315e04c05e9b8c55f29a93bd27a17b06969bc9201a5b8d5ca694d41cb52d4cd20079734cfab02943e990d892b3059
7
- data.tar.gz: f38a45683ea333ebb651fece6f428b0490c50e461bb7f99027f6f219d626a52ce9be9b37c3eaeaf63561dbfbb66b966594d8c0dd29f3d848d844602fc4e5a771
6
+ metadata.gz: 6e7ba577ce1a9ce9fd7e6530a178e675e3d0fd1af56128e2c59a79bb1fb3cde66514dd7d16c79df42e046ef2f0a90222ce347f547ec1e1b0760aa8a04ad1e2e6
7
+ data.tar.gz: ceda4757f47b3fe2089fabea131de290e12ddb1258c192496f2b5bb83d31a66a4a891d9ffcc338cdfd42ac74252c0667fe34c4be28904667208e60e9be713cd6
data/.gitignore CHANGED
File without changes
data/Gemfile CHANGED
File without changes
data/LICENSE.txt CHANGED
File without changes
data/README.rdoc CHANGED
@@ -27,6 +27,40 @@
27
27
  help - Shows a list of commands or help for one command
28
28
  log - Capture the logging output of the Cycle Analyst and optionally Phaserunner to a file
29
29
 
30
+ === Attributes that are Logged
31
+
32
+ * Timestamp
33
+ * Cycle Analyst Amp Hours (Ah)
34
+ * Cycle Analyst Volts (V)
35
+ * Cycle Analyst Current (A)
36
+ * Cycle Analyst Speed (Kph)
37
+ * Cycle Analyst Distance (Km)
38
+ * Cycle Analyst Motor Temp (DegC)
39
+ * Cycle Analyst Human Cadence (RPM)
40
+ * Cycle Analyst Human Power (W)
41
+ * Cycle Analyst Human Torque (Nm)
42
+ * Cycle Analyst Throttle In (V)
43
+ * Cycle Analyst Throttle Out (V)
44
+ * Cycle Analyst AuxA ()
45
+ * Cycle Analyst AuxD ()
46
+ * Cycle Analyst Limit Flags (bit flags)
47
+ * Cycle Analyst Faults
48
+ * Phaserunner Faults ()
49
+ * Phaserunner Controller Temperature (deg Celsius)
50
+ * Phaserunner Vehicle Speed (Km/hour)
51
+ * Phaserunner Motor Temperature (deg Celsius)
52
+ * Phaserunner Motor Current (Amps)
53
+ * Phaserunner Motor RPM (RPM)
54
+ * Phaserunner Motor Speed (% of rated rpm)
55
+ * Phaserunner Battery Voltage (Volts)
56
+ * Phaserunner Battery Current (Amps)
57
+ * Phaserunner Battery State of Charge (%)
58
+ * Phaserunner Battery Power (Watts)
59
+ * Phaserunner Last Fault ()
60
+ * Phaserunner Warnings ()
61
+ * Phaserunner Motor Input Power (W)
62
+
63
+
30
64
  == License and Copyright
31
65
 
32
66
  * Copyright (c) 2018 Robert J. Berger
data/Rakefile CHANGED
File without changes
@@ -20,14 +20,15 @@ Gem::Specification.new do |spec|
20
20
  spec.bindir = 'exe'
21
21
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
22
  spec.require_paths = ['lib']
23
-
23
+ spec.required_ruby_version = '~> 2'
24
+
24
25
  spec.has_rdoc = true
25
26
  spec.extra_rdoc_files = ['README.rdoc', 'cycle_analyst_logger.rdoc']
26
27
  spec.rdoc_options << '--title' << 'cycle_analyst_logger' << '--main' << 'README.rdoc' << '-ri'
27
28
 
28
29
  spec.add_runtime_dependency 'gli', '~> 2.17'
29
30
  spec.add_runtime_dependency 'serialport', '~> 1.3'
30
- spec.add_runtime_dependency 'phaserunner', '~> 0.1', '>= 0.1.3'
31
+ spec.add_runtime_dependency 'phaserunner', '~> 0.1', '>= 0.1.5'
31
32
 
32
33
  spec.add_development_dependency 'bundler', '~> 1.16'
33
34
  spec.add_development_dependency 'rake', '~> 10.0'
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -1,3 +1,3 @@
1
1
  module CycleAnalystLogger
2
- VERSION = '0.2.2'
2
+ VERSION = '0.2.3'
3
3
  end
data/todo.txt CHANGED
File without changes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cycle_analyst_logger
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert J. Berger
@@ -47,7 +47,7 @@ dependencies:
47
47
  version: '0.1'
48
48
  - - ">="
49
49
  - !ruby/object:Gem::Version
50
- version: 0.1.3
50
+ version: 0.1.5
51
51
  type: :runtime
52
52
  prerelease: false
53
53
  version_requirements: !ruby/object:Gem::Requirement
@@ -57,7 +57,7 @@ dependencies:
57
57
  version: '0.1'
58
58
  - - ">="
59
59
  - !ruby/object:Gem::Version
60
- version: 0.1.3
60
+ version: 0.1.5
61
61
  - !ruby/object:Gem::Dependency
62
62
  name: bundler
63
63
  requirement: !ruby/object:Gem::Requirement
@@ -182,9 +182,9 @@ require_paths:
182
182
  - lib
183
183
  required_ruby_version: !ruby/object:Gem::Requirement
184
184
  requirements:
185
- - - ">="
185
+ - - "~>"
186
186
  - !ruby/object:Gem::Version
187
- version: '0'
187
+ version: '2'
188
188
  required_rubygems_version: !ruby/object:Gem::Requirement
189
189
  requirements:
190
190
  - - ">="