biosignal-device-interface 0.1.0__py3-none-any.whl → 0.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- biosignal_device_interface/__init__.py +0 -4
- biosignal_device_interface/constants/devices/__init__.py +3 -0
- biosignal_device_interface/constants/devices/otb/otb_constants.py +0 -0
- biosignal_device_interface/constants/devices/otb/otb_muovi_constants.py +3 -3
- biosignal_device_interface/devices/__init__.py +10 -4
- biosignal_device_interface/devices/otb/__init__.py +19 -7
- biosignal_device_interface/devices/otb/otb_muovi.py +6 -6
- biosignal_device_interface/devices/otb/{otb_quattrocento.py → otb_quattrocento_light.py} +7 -31
- biosignal_device_interface/gui/device_template_widgets/__init__.py +0 -6
- biosignal_device_interface/gui/device_template_widgets/all_devices_widget.py +11 -7
- biosignal_device_interface/gui/device_template_widgets/otb/__init__.py +0 -10
- biosignal_device_interface/gui/device_template_widgets/otb/otb_devices_widget.py +12 -8
- biosignal_device_interface/gui/device_template_widgets/otb/otb_muovi_plus_widget.py +3 -3
- biosignal_device_interface/gui/device_template_widgets/otb/otb_muovi_widget.py +3 -3
- biosignal_device_interface/gui/device_template_widgets/otb/otb_quattrocento_light_widget.py +3 -3
- {biosignal_device_interface-0.1.0.dist-info → biosignal_device_interface-0.1.1.dist-info}/METADATA +3 -15
- {biosignal_device_interface-0.1.0.dist-info → biosignal_device_interface-0.1.1.dist-info}/RECORD +20 -19
- /biosignal_device_interface/constants/devices/otb/{otb_quattrocento_constants.py → otb_quattrocento_light_constants.py} +0 -0
- {biosignal_device_interface-0.1.0.dist-info → biosignal_device_interface-0.1.1.dist-info}/LICENSE +0 -0
- {biosignal_device_interface-0.1.0.dist-info → biosignal_device_interface-0.1.1.dist-info}/WHEEL +0 -0
|
File without changes
|
|
@@ -99,7 +99,7 @@ The values are dictionaries with the following keys:
|
|
|
99
99
|
|
|
100
100
|
MUOVI_AVAILABLE_CHANNELS_DICT: dict[DeviceType, dict[DeviceChannelTypes, int]] = {
|
|
101
101
|
DeviceType.OTB_MUOVI: {
|
|
102
|
-
DeviceChannelTypes.ALL:
|
|
102
|
+
DeviceChannelTypes.ALL: 38,
|
|
103
103
|
DeviceChannelTypes.BIOSIGNAL: 32,
|
|
104
104
|
DeviceChannelTypes.AUXILIARY: 6,
|
|
105
105
|
},
|
|
@@ -115,8 +115,8 @@ MUOVI_AVAILABLE_CHANNELS_DICT: dict[DeviceType, dict[DeviceChannelTypes, int]] =
|
|
|
115
115
|
"""
|
|
116
116
|
|
|
117
117
|
MUOVI_CONVERSION_FACTOR_DICT: dict[MuoviDetectionMode, int] = {
|
|
118
|
-
MuoviDetectionMode.MONOPOLAR_GAIN_8: 572.2e-
|
|
119
|
-
MuoviDetectionMode.MONOPOLAR_GAIN_4: 286.1e-
|
|
118
|
+
MuoviDetectionMode.MONOPOLAR_GAIN_8: 572.2e-6,
|
|
119
|
+
MuoviDetectionMode.MONOPOLAR_GAIN_4: 286.1e-6,
|
|
120
120
|
}
|
|
121
121
|
"""
|
|
122
122
|
Dictionary to get the gain of the Muovi detection mode. \\
|
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
# Import Devices to be used from biosignal_device_interface.devices
|
|
2
2
|
# import Muovi, MindRoveBracelet, Quattrocento, QuattrocentoLight, ...
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
from biosignal_device_interface.devices.otb import (
|
|
5
|
+
OTBMuoviWidget,
|
|
6
|
+
OTBMuoviPlusWidget,
|
|
7
|
+
OTBQuattrocentoLightWidget,
|
|
8
|
+
OTBMuovi,
|
|
7
9
|
OTBQuattrocentoLight,
|
|
10
|
+
OTBDevicesWidget,
|
|
11
|
+
)
|
|
12
|
+
|
|
13
|
+
from biosignal_device_interface.gui.device_template_widgets.all_devices_widget import (
|
|
14
|
+
AllDevicesWidget,
|
|
8
15
|
)
|
|
9
|
-
from biosignal_device_interface.devices.otb.otb_muovi import OTBMuovi
|
|
@@ -1,9 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
from biosignal_device_interface.devices.otb.otb_quattrocento_light import (
|
|
2
|
+
OTBQuattrocentoLight,
|
|
3
|
+
)
|
|
4
|
+
from biosignal_device_interface.devices.otb.otb_muovi import OTBMuovi
|
|
5
|
+
|
|
6
|
+
# Widgets
|
|
7
|
+
# All OTB Devices Widget
|
|
8
|
+
from biosignal_device_interface.gui.device_template_widgets.otb.otb_devices_widget import (
|
|
9
|
+
OTBDevicesWidget,
|
|
10
|
+
)
|
|
3
11
|
|
|
4
|
-
# OTB
|
|
5
|
-
from biosignal_device_interface.
|
|
6
|
-
|
|
7
|
-
|
|
12
|
+
# Individual OTB Device Widgets
|
|
13
|
+
from biosignal_device_interface.gui.device_template_widgets.otb.otb_muovi_widget import (
|
|
14
|
+
OTBMuoviWidget,
|
|
15
|
+
)
|
|
16
|
+
from biosignal_device_interface.gui.device_template_widgets.otb.otb_muovi_plus_widget import (
|
|
17
|
+
OTBMuoviPlusWidget,
|
|
18
|
+
)
|
|
19
|
+
from biosignal_device_interface.gui.device_template_widgets.otb.otb_quattrocento_light_widget import (
|
|
20
|
+
OTBQuattrocentoLightWidget,
|
|
8
21
|
)
|
|
9
|
-
from biosignal_device_interface.devices.otb.otb_muovi import OTBMuovi as Muovi
|
|
@@ -19,7 +19,7 @@ from biosignal_device_interface.constants.devices.core.base_device_constants imp
|
|
|
19
19
|
)
|
|
20
20
|
|
|
21
21
|
# Constants
|
|
22
|
-
from biosignal_device_interface.constants.devices.otb_muovi_constants import (
|
|
22
|
+
from biosignal_device_interface.constants.devices.otb.otb_muovi_constants import (
|
|
23
23
|
MUOVI_CONVERSION_FACTOR_DICT,
|
|
24
24
|
MuoviWorkingMode,
|
|
25
25
|
MuoviDetectionMode,
|
|
@@ -126,9 +126,9 @@ class OTBMuovi(BaseDevice):
|
|
|
126
126
|
return True
|
|
127
127
|
|
|
128
128
|
def configure_device(
|
|
129
|
-
self,
|
|
129
|
+
self, params: Dict[str, Union[Enum, Dict[str, Enum]]] # type: ignore
|
|
130
130
|
) -> None:
|
|
131
|
-
super().configure_device(
|
|
131
|
+
super().configure_device(params)
|
|
132
132
|
|
|
133
133
|
if not self._is_connected or self._client_socket is None:
|
|
134
134
|
return
|
|
@@ -233,10 +233,10 @@ class OTBMuovi(BaseDevice):
|
|
|
233
233
|
self._process_data(data_to_process)
|
|
234
234
|
self._received_bytes = self._received_bytes[self._buffer_size :]
|
|
235
235
|
|
|
236
|
-
def _process_data(self,
|
|
237
|
-
super()._process_data(
|
|
236
|
+
def _process_data(self, input: bytearray) -> None:
|
|
237
|
+
super()._process_data(input)
|
|
238
238
|
|
|
239
|
-
decoded_data = self._bytes_to_integers(
|
|
239
|
+
decoded_data = self._bytes_to_integers(input)
|
|
240
240
|
|
|
241
241
|
processed_data = decoded_data.reshape(
|
|
242
242
|
self._number_of_channels, -1, order="F"
|
|
@@ -22,7 +22,7 @@ from biosignal_device_interface.devices.core.base_device import BaseDevice
|
|
|
22
22
|
from biosignal_device_interface.constants.devices.core.base_device_constants import (
|
|
23
23
|
DeviceType,
|
|
24
24
|
)
|
|
25
|
-
from biosignal_device_interface.constants.devices.
|
|
25
|
+
from biosignal_device_interface.constants.devices.otb.otb_quattrocento_light_constants import (
|
|
26
26
|
COMMAND_START_STREAMING,
|
|
27
27
|
COMMAND_STOP_STREAMING,
|
|
28
28
|
CONNECTION_RESPONSE,
|
|
@@ -110,9 +110,9 @@ class OTBQuattrocentoLight(BaseDevice):
|
|
|
110
110
|
self._interface.close()
|
|
111
111
|
|
|
112
112
|
def configure_device(
|
|
113
|
-
self,
|
|
113
|
+
self, params: Dict[str, Union[Enum, Dict[str, Enum]]] # type: ignore
|
|
114
114
|
) -> None:
|
|
115
|
-
super().configure_device(
|
|
115
|
+
super().configure_device(params)
|
|
116
116
|
|
|
117
117
|
# Configure the device
|
|
118
118
|
self._number_of_biosignal_channels = len(self._grids) * self._grid_size
|
|
@@ -191,11 +191,11 @@ class OTBQuattrocentoLight(BaseDevice):
|
|
|
191
191
|
self._process_data(data_to_process)
|
|
192
192
|
self._received_bytes = self._received_bytes[self._buffer_size :]
|
|
193
193
|
|
|
194
|
-
def _process_data(self,
|
|
195
|
-
super()._process_data(
|
|
194
|
+
def _process_data(self, input: bytearray) -> None:
|
|
195
|
+
super()._process_data(input)
|
|
196
196
|
|
|
197
197
|
# Decode the data
|
|
198
|
-
decoded_data = np.frombuffer(
|
|
198
|
+
decoded_data = np.frombuffer(input, dtype=np.int16)
|
|
199
199
|
|
|
200
200
|
# Reshape it to the correct format
|
|
201
201
|
processed_data = decoded_data.reshape(
|
|
@@ -207,29 +207,5 @@ class OTBQuattrocentoLight(BaseDevice):
|
|
|
207
207
|
self.biosignal_data_available.emit(self._extract_biosignal_data(processed_data))
|
|
208
208
|
self.auxiliary_data_available.emit(self._extract_auxiliary_data(processed_data))
|
|
209
209
|
|
|
210
|
-
def get_device_information(self) -> Dict[str, Enum | int | float | str]:
|
|
210
|
+
def get_device_information(self) -> Dict[str, Enum | int | float | str]: # type: ignore
|
|
211
211
|
return super().get_device_information()
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
class OTBQuattrocento(BaseDevice):
|
|
215
|
-
"""
|
|
216
|
-
Quattrocento device class derived from BaseDevice class.
|
|
217
|
-
|
|
218
|
-
The Quattrocento class is using a TCP/IP protocol to communicate with the device.
|
|
219
|
-
"""
|
|
220
|
-
|
|
221
|
-
def __init__(
|
|
222
|
-
self,
|
|
223
|
-
parent: Union[QMainWindow, QWidget] = None,
|
|
224
|
-
) -> None:
|
|
225
|
-
super().__init__(parent)
|
|
226
|
-
|
|
227
|
-
# Device Parameters
|
|
228
|
-
self._device_type: DeviceType = DeviceType.OTB_QUATTROCENTO
|
|
229
|
-
|
|
230
|
-
# Device Information
|
|
231
|
-
self._conversion_factor_biosignal: float = 5 / (2**16) / 150 * 1000
|
|
232
|
-
self._conversion_factor_auxiliary: float = 5 / (2**16) / 0.5
|
|
233
|
-
|
|
234
|
-
# Connection Parameters
|
|
235
|
-
self._interface: QTcpSocket = QTcpSocket()
|
|
@@ -14,10 +14,14 @@ from biosignal_device_interface.gui.device_template_widgets.core.base_multiple_d
|
|
|
14
14
|
from biosignal_device_interface.constants.devices.core.base_device_constants import (
|
|
15
15
|
DeviceType,
|
|
16
16
|
)
|
|
17
|
-
from biosignal_device_interface.gui.device_template_widgets import (
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
17
|
+
from biosignal_device_interface.gui.device_template_widgets.otb.otb_muovi_plus_widget import (
|
|
18
|
+
OTBMuoviPlusWidget,
|
|
19
|
+
)
|
|
20
|
+
from biosignal_device_interface.gui.device_template_widgets.otb.otb_muovi_widget import (
|
|
21
|
+
OTBMuoviWidget,
|
|
22
|
+
)
|
|
23
|
+
from biosignal_device_interface.gui.device_template_widgets.otb.otb_quattrocento_light_widget import (
|
|
24
|
+
OTBQuattrocentoLightWidget,
|
|
21
25
|
)
|
|
22
26
|
|
|
23
27
|
if TYPE_CHECKING:
|
|
@@ -32,8 +36,8 @@ class AllDevicesWidget(BaseMultipleDevicesWidget):
|
|
|
32
36
|
super().__init__(parent)
|
|
33
37
|
|
|
34
38
|
self._device_selection: Dict[DeviceType, BaseDeviceWidget] = {
|
|
35
|
-
DeviceType.OTB_QUATTROCENTO_LIGHT:
|
|
36
|
-
DeviceType.OTB_MUOVI:
|
|
37
|
-
DeviceType.OTB_MUOVI_PLUS:
|
|
39
|
+
DeviceType.OTB_QUATTROCENTO_LIGHT: OTBQuattrocentoLightWidget(self),
|
|
40
|
+
DeviceType.OTB_MUOVI: OTBMuoviWidget(self),
|
|
41
|
+
DeviceType.OTB_MUOVI_PLUS: OTBMuoviPlusWidget(self),
|
|
38
42
|
}
|
|
39
43
|
self._set_devices(self._device_selection)
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
# OTB Devices
|
|
2
|
-
from biosignal_device_interface.gui.device_template_widgets.otb.otb_muovi_widget import (
|
|
3
|
-
MuoviWidget,
|
|
4
|
-
)
|
|
5
|
-
from biosignal_device_interface.gui.device_template_widgets.otb.otb_muovi_plus_widget import (
|
|
6
|
-
OTBMuoviWidget as MuoviPlusWidget,
|
|
7
|
-
)
|
|
8
|
-
from biosignal_device_interface.gui.device_template_widgets.otb.otb_quattrocento_light_widget import (
|
|
9
|
-
QuattrocentoLightWidget,
|
|
10
|
-
)
|
|
@@ -7,10 +7,14 @@ from biosignal_device_interface.gui.device_template_widgets.core.base_multiple_d
|
|
|
7
7
|
from biosignal_device_interface.constants.devices.core.base_device_constants import (
|
|
8
8
|
DeviceType,
|
|
9
9
|
)
|
|
10
|
-
from biosignal_device_interface.gui.device_template_widgets.otb import (
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
from biosignal_device_interface.gui.device_template_widgets.otb.otb_muovi_plus_widget import (
|
|
11
|
+
OTBMuoviPlusWidget,
|
|
12
|
+
)
|
|
13
|
+
from biosignal_device_interface.gui.device_template_widgets.otb.otb_muovi_widget import (
|
|
14
|
+
OTBMuoviWidget,
|
|
15
|
+
)
|
|
16
|
+
from biosignal_device_interface.gui.device_template_widgets.otb.otb_quattrocento_light_widget import (
|
|
17
|
+
OTBQuattrocentoLightWidget,
|
|
14
18
|
)
|
|
15
19
|
|
|
16
20
|
if TYPE_CHECKING:
|
|
@@ -20,13 +24,13 @@ if TYPE_CHECKING:
|
|
|
20
24
|
)
|
|
21
25
|
|
|
22
26
|
|
|
23
|
-
class
|
|
27
|
+
class OTBDevicesWidget(BaseMultipleDevicesWidget):
|
|
24
28
|
def __init__(self, parent: QWidget | QMainWindow | None = None):
|
|
25
29
|
super().__init__(parent)
|
|
26
30
|
|
|
27
31
|
self._device_selection: Dict[DeviceType, BaseDeviceWidget] = {
|
|
28
|
-
DeviceType.OTB_QUATTROCENTO_LIGHT:
|
|
29
|
-
DeviceType.OTB_MUOVI:
|
|
30
|
-
DeviceType.OTB_MUOVI_PLUS:
|
|
32
|
+
DeviceType.OTB_QUATTROCENTO_LIGHT: OTBQuattrocentoLightWidget(self),
|
|
33
|
+
DeviceType.OTB_MUOVI: OTBMuoviWidget(self),
|
|
34
|
+
DeviceType.OTB_MUOVI_PLUS: OTBMuoviPlusWidget(self),
|
|
31
35
|
}
|
|
32
36
|
self._set_devices(self._device_selection)
|
|
@@ -7,10 +7,10 @@ from biosignal_device_interface.gui.device_template_widgets.core.base_device_wid
|
|
|
7
7
|
from biosignal_device_interface.gui.ui_compiled.otb_muovi_template_widget import (
|
|
8
8
|
Ui_MuoviForm,
|
|
9
9
|
)
|
|
10
|
-
from biosignal_device_interface.devices import OTBMuovi
|
|
10
|
+
from biosignal_device_interface.devices.otb.otb_muovi import OTBMuovi
|
|
11
11
|
|
|
12
12
|
# Constants
|
|
13
|
-
from biosignal_device_interface.constants.devices.otb_muovi_constants import (
|
|
13
|
+
from biosignal_device_interface.constants.devices.otb.otb_muovi_constants import (
|
|
14
14
|
MuoviWorkingMode,
|
|
15
15
|
MuoviDetectionMode,
|
|
16
16
|
MUOVI_NETWORK_PORT,
|
|
@@ -27,7 +27,7 @@ if TYPE_CHECKING:
|
|
|
27
27
|
)
|
|
28
28
|
|
|
29
29
|
|
|
30
|
-
class
|
|
30
|
+
class OTBMuoviPlusWidget(BaseDeviceWidget):
|
|
31
31
|
def __init__(self, parent: QWidget | QMainWindow | None = None):
|
|
32
32
|
super().__init__(parent)
|
|
33
33
|
|
|
@@ -7,10 +7,10 @@ from biosignal_device_interface.gui.device_template_widgets.core.base_device_wid
|
|
|
7
7
|
from biosignal_device_interface.gui.ui_compiled.otb_muovi_template_widget import (
|
|
8
8
|
Ui_MuoviForm,
|
|
9
9
|
)
|
|
10
|
-
from biosignal_device_interface.devices import OTBMuovi
|
|
10
|
+
from biosignal_device_interface.devices.otb.otb_muovi import OTBMuovi
|
|
11
11
|
|
|
12
12
|
# Constants
|
|
13
|
-
from biosignal_device_interface.constants.devices.otb_muovi_constants import (
|
|
13
|
+
from biosignal_device_interface.constants.devices.otb.otb_muovi_constants import (
|
|
14
14
|
MuoviWorkingMode,
|
|
15
15
|
MuoviDetectionMode,
|
|
16
16
|
MUOVI_NETWORK_PORT,
|
|
@@ -27,7 +27,7 @@ if TYPE_CHECKING:
|
|
|
27
27
|
)
|
|
28
28
|
|
|
29
29
|
|
|
30
|
-
class
|
|
30
|
+
class OTBMuoviWidget(BaseDeviceWidget):
|
|
31
31
|
def __init__(self, parent: QWidget | QMainWindow | None = None):
|
|
32
32
|
super().__init__(parent)
|
|
33
33
|
|
|
@@ -7,10 +7,10 @@ from biosignal_device_interface.gui.device_template_widgets.core.base_device_wid
|
|
|
7
7
|
from biosignal_device_interface.gui.ui_compiled.otb_quattrocento_light_template_widget import (
|
|
8
8
|
Ui_QuattrocentoLightForm,
|
|
9
9
|
)
|
|
10
|
-
from biosignal_device_interface.devices import OTBQuattrocentoLight
|
|
10
|
+
from biosignal_device_interface.devices.otb.otb_quattrocento_light import OTBQuattrocentoLight
|
|
11
11
|
|
|
12
12
|
# Constants
|
|
13
|
-
from biosignal_device_interface.constants.devices.
|
|
13
|
+
from biosignal_device_interface.constants.devices.otb.otb_quattrocento_light_constants import (
|
|
14
14
|
QuattrocentoLightSamplingFrequency,
|
|
15
15
|
QuattrocentoLightStreamingFrequency,
|
|
16
16
|
)
|
|
@@ -27,7 +27,7 @@ if TYPE_CHECKING:
|
|
|
27
27
|
)
|
|
28
28
|
|
|
29
29
|
|
|
30
|
-
class
|
|
30
|
+
class OTBQuattrocentoLightWidget(BaseDeviceWidget):
|
|
31
31
|
def __init__(self, parent: QWidget | QMainWindow | None = None):
|
|
32
32
|
super().__init__(parent)
|
|
33
33
|
self._set_device(OTBQuattrocentoLight(self))
|
{biosignal_device_interface-0.1.0.dist-info → biosignal_device_interface-0.1.1.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: biosignal-device-interface
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Python communication interface to many biosignal devices manufactured by several companies to easy integration in custom PySide6 applications.
|
|
5
5
|
License: CC BY-SA 4.0
|
|
6
6
|
Author: Dominik I. Braun
|
|
@@ -12,7 +12,6 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.11
|
|
13
13
|
Requires-Dist: aenum (>=3.1.15,<4.0.0)
|
|
14
14
|
Requires-Dist: matplotlib (>=3.9.0,<4.0.0)
|
|
15
|
-
Requires-Dist: mindrove (>=0.0.10,<0.0.11)
|
|
16
15
|
Requires-Dist: numpy (>=1.26.4,<2.0.0)
|
|
17
16
|
Requires-Dist: psutil (>=5.9.8,<6.0.0)
|
|
18
17
|
Requires-Dist: pyside6 (>=6.7.0,<7.0.0)
|
|
@@ -34,7 +33,7 @@ Description-Content-Type: text/markdown
|
|
|
34
33
|
<p align="center">
|
|
35
34
|
Python communication interface to many biosignal devices manufactured by several companies to easy integration in custom PySide6 applications.
|
|
36
35
|
<br />
|
|
37
|
-
<a href="https://github.
|
|
36
|
+
<a href="https://nsquaredlab.github.io/Biosignal-Device-Interface/"><strong>Explore the docs »</strong></a>
|
|
38
37
|
</p>
|
|
39
38
|
</div>
|
|
40
39
|
|
|
@@ -46,9 +45,6 @@ Description-Content-Type: text/markdown
|
|
|
46
45
|
<ol>
|
|
47
46
|
<li>
|
|
48
47
|
<a href="#about-the-project">About The Project</a>
|
|
49
|
-
<ul>
|
|
50
|
-
<li><a href="#built-with">Built With</a></li>
|
|
51
|
-
</ul>
|
|
52
48
|
</li>
|
|
53
49
|
<li><a href="#contact">Contact</a></li>
|
|
54
50
|
<li>
|
|
@@ -69,14 +65,6 @@ Description-Content-Type: text/markdown
|
|
|
69
65
|
|
|
70
66
|
Give a brief introduction into the project.
|
|
71
67
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
### Built With
|
|
75
|
-
|
|
76
|
-
* Python 3.10 / 3.11
|
|
77
|
-
* PySide6 - Version ^6.7.0
|
|
78
|
-
* Vispy - Version ^0.14.0
|
|
79
|
-
|
|
80
68
|
<!-- CONTACT -->
|
|
81
69
|
### Contact
|
|
82
70
|
|
|
@@ -120,7 +108,7 @@ pip install git+https://github.com/NsquaredLab/Biosignal-Device-Interface.git
|
|
|
120
108
|
<!-- USAGE EXAMPLES -->
|
|
121
109
|
## Usage
|
|
122
110
|
|
|
123
|
-
Examples of how you can use this package can be found in our [examples gallery](https://github.
|
|
111
|
+
Examples of how you can use this package can be found in our [examples gallery](https://nsquaredlab.github.io/Biosignal-Device-Interface/auto_examples/index.html).
|
|
124
112
|
|
|
125
113
|
|
|
126
114
|
<!-- LICENSE -->
|
{biosignal_device_interface-0.1.0.dist-info → biosignal_device_interface-0.1.1.dist-info}/RECORD
RENAMED
|
@@ -1,25 +1,26 @@
|
|
|
1
|
-
biosignal_device_interface/__init__.py,sha256=
|
|
1
|
+
biosignal_device_interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
biosignal_device_interface/constants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
biosignal_device_interface/constants/devices/__init__.py,sha256=
|
|
3
|
+
biosignal_device_interface/constants/devices/__init__.py,sha256=q63DYmfm6yMemKwEiFED87j9-J2ZpxbnE04C2-5s--g,107
|
|
4
4
|
biosignal_device_interface/constants/devices/core/base_device_constants.py,sha256=LjAUvZfaTlciWdAyk0CDZh7hEr4Wg3sKXCqejKA73Xk,1405
|
|
5
|
-
biosignal_device_interface/constants/devices/otb/
|
|
6
|
-
biosignal_device_interface/constants/devices/otb/
|
|
5
|
+
biosignal_device_interface/constants/devices/otb/otb_constants.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
+
biosignal_device_interface/constants/devices/otb/otb_muovi_constants.py,sha256=LTmvSm6RMf_wg6wdQaZW3lM2ygdWzZezLI1pxv0OOoc,4319
|
|
7
|
+
biosignal_device_interface/constants/devices/otb/otb_quattrocento_light_constants.py,sha256=0YGDhfYSMMae9oRnpYeyk61ZA2K4ahTb-xdwsEh0j3Y,1712
|
|
7
8
|
biosignal_device_interface/constants/plots/color_palette.py,sha256=dobhXqcAfYKHQBDUhiNmM4i0foJFO8Vr1TNTbVOi1nE,1057
|
|
8
|
-
biosignal_device_interface/devices/__init__.py,sha256=
|
|
9
|
+
biosignal_device_interface/devices/__init__.py,sha256=GeMVzLhgpe4-gvHMNx6K-r9lCSIeOl1i5OfgR871YTk,461
|
|
9
10
|
biosignal_device_interface/devices/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
11
|
biosignal_device_interface/devices/core/base_device.py,sha256=4X0-QJ7_ib5Qb2MuOPuEP7xpXWIA0ZfPHMAzGtu8dEI,14149
|
|
11
|
-
biosignal_device_interface/devices/otb/__init__.py,sha256=
|
|
12
|
-
biosignal_device_interface/devices/otb/otb_muovi.py,sha256=
|
|
13
|
-
biosignal_device_interface/devices/otb/
|
|
14
|
-
biosignal_device_interface/gui/device_template_widgets/__init__.py,sha256=
|
|
15
|
-
biosignal_device_interface/gui/device_template_widgets/all_devices_widget.py,sha256=
|
|
12
|
+
biosignal_device_interface/devices/otb/__init__.py,sha256=pAUX9VPnRudoLZ_H6Kt2prjHyMbKJCt9DEjo8mfivCw,750
|
|
13
|
+
biosignal_device_interface/devices/otb/otb_muovi.py,sha256=4MelQXgDcpkh_dx0HwFt-QAdjsFBFDqkeR-v0PWXqc0,10340
|
|
14
|
+
biosignal_device_interface/devices/otb/otb_quattrocento_light.py,sha256=Gsvj15ZCPWOooVjEeXfmHgOtFkORv26naaUuGi4KX5U,7345
|
|
15
|
+
biosignal_device_interface/gui/device_template_widgets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
+
biosignal_device_interface/gui/device_template_widgets/all_devices_widget.py,sha256=HkmsnSEqZ5M1Rnsm3QBwLVNkQloIS52WXP1tuCTQaBE,1595
|
|
16
17
|
biosignal_device_interface/gui/device_template_widgets/core/base_device_widget.py,sha256=hHeHVn4JccPQTQOXPd9Z8-ES_WxnIGPC897x6lSPeuk,3501
|
|
17
18
|
biosignal_device_interface/gui/device_template_widgets/core/base_multiple_devices_widget.py,sha256=fhj5O2-hmfVDSXJ5j1KNQ0pq7caSRKpcN19wIrfngc4,3988
|
|
18
|
-
biosignal_device_interface/gui/device_template_widgets/otb/__init__.py,sha256=
|
|
19
|
-
biosignal_device_interface/gui/device_template_widgets/otb/otb_devices_widget.py,sha256=
|
|
20
|
-
biosignal_device_interface/gui/device_template_widgets/otb/otb_muovi_plus_widget.py,sha256=
|
|
21
|
-
biosignal_device_interface/gui/device_template_widgets/otb/otb_muovi_widget.py,sha256=
|
|
22
|
-
biosignal_device_interface/gui/device_template_widgets/otb/otb_quattrocento_light_widget.py,sha256=
|
|
19
|
+
biosignal_device_interface/gui/device_template_widgets/otb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
+
biosignal_device_interface/gui/device_template_widgets/otb/otb_devices_widget.py,sha256=asy5gkgHMaEn4Qe3jeyIqTG8gvoUAdPLNFdsWXfH34w,1413
|
|
21
|
+
biosignal_device_interface/gui/device_template_widgets/otb/otb_muovi_plus_widget.py,sha256=zf06K66y3aaGz4CctupoD9y6Z9JIpFRapp1KKFV_aWY,6107
|
|
22
|
+
biosignal_device_interface/gui/device_template_widgets/otb/otb_muovi_widget.py,sha256=XqSm2ic7P90QzOBKoxkPL2abJPg3WuJ6XRij5Nmbec4,6083
|
|
23
|
+
biosignal_device_interface/gui/device_template_widgets/otb/otb_quattrocento_light_widget.py,sha256=2hJwp6Wf0YophLRiJyn1_ixvyaHOayFDcMSLIz6O6iE,6713
|
|
23
24
|
biosignal_device_interface/gui/plot_widgets/biosignal_plot_widget.py,sha256=9Hprby5B4c1A7nZpigX-Y1-O99TQ4cEadNct5PlTQss,18557
|
|
24
25
|
biosignal_device_interface/gui/ui/devices_template_widget.ui,sha256=K1IXxMGx19g9WuB_k7pyEZcySnnz15uARJjx8jjF0BY,977
|
|
25
26
|
biosignal_device_interface/gui/ui/otb_muovi_plus_template_widget.ui,sha256=VPTyX-fgJgmAm0aXwPsNufCYcRt4uw_1T1D2ZtZPMrw,4918
|
|
@@ -29,7 +30,7 @@ biosignal_device_interface/gui/ui_compiled/devices_template_widget.py,sha256=tLG
|
|
|
29
30
|
biosignal_device_interface/gui/ui_compiled/otb_muovi_plus_template_widget.py,sha256=BQBb38kzJQOoUh-iJQfaEOlgQYnEUshfpmVbaAkk_wA,7707
|
|
30
31
|
biosignal_device_interface/gui/ui_compiled/otb_muovi_template_widget.py,sha256=UQizD9Z89_WogUoHMPdtKgE7qwhq6xNWubYhjUL11yY,7566
|
|
31
32
|
biosignal_device_interface/gui/ui_compiled/otb_quattrocento_light_template_widget.py,sha256=KaABGhQGiXSxdG8HBgviR50i14WvOctF7YbDxXmyZO8,12148
|
|
32
|
-
biosignal_device_interface-0.1.
|
|
33
|
-
biosignal_device_interface-0.1.
|
|
34
|
-
biosignal_device_interface-0.1.
|
|
35
|
-
biosignal_device_interface-0.1.
|
|
33
|
+
biosignal_device_interface-0.1.1.dist-info/LICENSE,sha256=SKg6bjn3svFmdjswd2EyyamaqBbxfLBvh61bhUKntx8,19045
|
|
34
|
+
biosignal_device_interface-0.1.1.dist-info/METADATA,sha256=oInbak8ukLIscEsd7wO_dxO70nY5f54yy-9qu7_lC4o,3820
|
|
35
|
+
biosignal_device_interface-0.1.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
36
|
+
biosignal_device_interface-0.1.1.dist-info/RECORD,,
|
|
File without changes
|
{biosignal_device_interface-0.1.0.dist-info → biosignal_device_interface-0.1.1.dist-info}/LICENSE
RENAMED
|
File without changes
|
{biosignal_device_interface-0.1.0.dist-info → biosignal_device_interface-0.1.1.dist-info}/WHEEL
RENAMED
|
File without changes
|