-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathvoltage.py
90 lines (68 loc) · 2.31 KB
/
voltage.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
from dataclasses import dataclass
from loguru import logger
import numpy as np
@dataclass
class Reading:
"""Small container class representing a single voltage reading.
"""
timestamp: float
adc: int
_CONVERSION_SLOPE = 1.653
_CONVERSION_OFFSET = 0.456
@staticmethod
def _adc_to_voltage(adc):
"""
"""
return Reading._CONVERSION_SLOPE * adc + Reading._CONVERSION_OFFSET
def voltage(self):
"""Convert ADC counts to a physical voltage (in V).
"""
return self._adc_to_voltage(self.adc)
class VoltageData:
"""Simple interface to a set of voltage readings.
"""
def __init__(self, timestamps, adcs):
logger.info(f'Initializing {self.__class__.__name__} from arrays...')
self._readings = [Reading(timestamp, adc) for (timestamp, adc) in zip(timestamps, adcs)]
logger.info(f'Done, {len(self._readings)} values read.')
self._iterator = iter(self._readings)
@classmethod
def from_file(cls, file_path):
logger.info(f'Reading voltage data from {file_path}...')
timestamps = []
adcs = []
with open(file_path) as input_file:
for line in input_file.readlines():
timestamp, adc = cls._parse_line(line)
timestamps.append(timestamp)
adcs.append(adc)
return cls(timestamps, adcs)
@staticmethod
def _parse_line(line):
"""Parse a single line from a text file and return a Reading object.
"""
timestamp, adc = line.split()
timestamp = float(timestamp)
adc = int(adc)
return timestamp, adc
def __iter__(self):
return self
def __next__(self):
return next(self._iterator)
def __getitem__(self, index):
return self._readings[index]
if __name__ == '__main__':
t = np.linspace(1., 10., 10)
a = np.full(t.shape, 127)
data1 = VoltageData(t, a)
for reading in data1:
print(reading, reading.timestamp, reading.adc, reading.voltage())
data2 = VoltageData.from_file('voltage_data.txt')
for reading in data2:
print(reading, reading.timestamp, reading.adc, reading.voltage())
#
# print('Done.')
# print(data[3])
#
# print(data._parse_line('1. 127'))
# print(VoltageData._parse_line('1. 127'))