24 lines
775 B
Matlab
24 lines
775 B
Matlab
classdef RawBatteryAndThermometerDataClass < BatteryAndThermometerDataBaseClass
|
|
|
|
%% Public 'read-only' properties
|
|
properties (SetAccess = private)
|
|
FileNameAppendage = '_RawBattAndTherm.csv';
|
|
end
|
|
|
|
%% Public methods
|
|
methods (Access = public)
|
|
function obj = RawBatteryAndThermometerDataClass(varargin)
|
|
fileNamePrefix = varargin{1};
|
|
for i = 2:2:nargin
|
|
if strcmp(varargin{i}, 'SampleRate'), obj.SampleRate = varargin{i+1};
|
|
else error('Invalid argument.');
|
|
end
|
|
end
|
|
obj.Import(fileNamePrefix);
|
|
|
|
% Set protected parent class variables
|
|
obj.ThermometerUnits = 'lsb';
|
|
obj.BatteryUnits = 'lsb';
|
|
end
|
|
end
|
|
end |