Skip to content

Commit 6d8d9b4

Browse files
committed
adjust comment for quattrocento auxiliary conversion factor
1 parent b48c1ef commit 6d8d9b4

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

biosignal_device_interface/devices/otb/otb_quattrocento.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def __init__(self, parent: Union[QMainWindow, QWidget] = None):
5757

5858
# Device Information
5959
self._conversion_factor_biosignal: float = 5 / (2**16) / 150 * 1000 # in mV
60-
self._conversion_factor_auxiliary: float = 5 / (2**16) / 0.5 # in mV
60+
self._conversion_factor_auxiliary: float = 5 / (2**16) / 0.5 # in V
6161
self._number_of_streamed_channels: int = None
6262

6363
# Connection Parameters

biosignal_device_interface/devices/otb/otb_quattrocento_light.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def __init__(
6060
self._auxiliary_channel_start_index: int = 384 # Fix value
6161
self._number_of_auxiliary_channels: int = 16 # Fix value
6262
self._conversion_factor_biosignal: float = 5 / (2**16) / 150 * 1000 # in mV
63-
self._conversion_factor_auxiliary: float = 5 / (2**16) / 0.5 # in mV
63+
self._conversion_factor_auxiliary: float = 5 / (2**16) / 0.5 # in V
6464
self._bytes_per_sample: int = 2 # Fix value
6565
# Quattrocento unique parameters
6666
self._streaming_frequency: int | None = None

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "biosignal-device-interface"
3-
version = "0.2.5"
3+
version = "0.2.6"
44
description = "Python communication interface to many biosignal devices manufactured by several companies to easy integration in custom PySide6 applications."
55
authors = [
66
{name = "Dominik I. Braun", email = "dome.braun@fau.de"},

0 commit comments

Comments
 (0)