Sha256: a78ed2253e6441f16662e58737e3aeebbb1cdfbeb46eb14f8a464a6a6ae4ca87
Contents?: true
Size: 786 Bytes
Versions: 31
Compression:
Stored size: 786 Bytes
Contents
#!/usr/bin/env ruby -w # encoding: UTF-8 # # = RR_Intervals.rb -- Fit4Ruby - FIT file processing library for Ruby # # Copyright (c) 2015 by Chris Schlaeger <cs@taskjuggler.org> # # This program is free software; you can redistribute it and/or modify # it under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # require 'fit4ruby/FitDataRecord' module Fit4Ruby # The Heart Rate Variability or HRV data is contained in message number 78. # It is an array of values that represent the time in seconds since the # previous heart beat (R-R interval). class HRV < FitDataRecord def initialize(field_values = {}) super('hrv') set_field_values(field_values) end def check(index) end end end
Version data entries
31 entries across 31 versions & 1 rubygems