biosignal-device-interface 0.1.11b0__py3-none-any.whl → 0.1.311__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.
Files changed (22) hide show
  1. biosignal_device_interface/__init__.py +0 -4
  2. biosignal_device_interface/constants/devices/__init__.py +3 -0
  3. biosignal_device_interface/constants/devices/otb/otb_constants.py +0 -0
  4. biosignal_device_interface/devices/__init__.py +10 -4
  5. biosignal_device_interface/devices/core/base_device.py +3 -6
  6. biosignal_device_interface/devices/otb/__init__.py +19 -7
  7. biosignal_device_interface/devices/otb/otb_muovi.py +5 -5
  8. biosignal_device_interface/devices/otb/{otb_quattrocento.py → otb_quattrocento_light.py} +19 -41
  9. biosignal_device_interface/gui/device_template_widgets/__init__.py +0 -6
  10. biosignal_device_interface/gui/device_template_widgets/all_devices_widget.py +11 -7
  11. biosignal_device_interface/gui/device_template_widgets/core/base_multiple_devices_widget.py +7 -4
  12. biosignal_device_interface/gui/device_template_widgets/otb/__init__.py +0 -10
  13. biosignal_device_interface/gui/device_template_widgets/otb/otb_devices_widget.py +11 -7
  14. biosignal_device_interface/gui/device_template_widgets/otb/otb_muovi_plus_widget.py +2 -2
  15. biosignal_device_interface/gui/device_template_widgets/otb/otb_muovi_widget.py +2 -2
  16. biosignal_device_interface/gui/device_template_widgets/otb/otb_quattrocento_light_widget.py +3 -3
  17. biosignal_device_interface/gui/plot_widgets/biosignal_plot_widget.py +7 -3
  18. {biosignal_device_interface-0.1.11b0.dist-info → biosignal_device_interface-0.1.311.dist-info}/METADATA +3 -15
  19. {biosignal_device_interface-0.1.11b0.dist-info → biosignal_device_interface-0.1.311.dist-info}/RECORD +22 -21
  20. /biosignal_device_interface/constants/devices/otb/{otb_quattrocento_constants.py → otb_quattrocento_light_constants.py} +0 -0
  21. {biosignal_device_interface-0.1.11b0.dist-info → biosignal_device_interface-0.1.311.dist-info}/LICENSE +0 -0
  22. {biosignal_device_interface-0.1.11b0.dist-info → biosignal_device_interface-0.1.311.dist-info}/WHEEL +0 -0
@@ -1,4 +0,0 @@
1
- from biosignal_device_interface.devices import otb
2
- from biosignal_device_interface.constants.devices.core.base_device_constants import (
3
- DeviceType,
4
- )
@@ -0,0 +1,3 @@
1
+ from biosignal_device_interface.constants.devices.core.base_device_constants import (
2
+ DeviceType,
3
+ )
@@ -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
- # OTB Devices
5
- from biosignal_device_interface.devices.otb.otb_quattrocento import (
6
- OTBQuattrocento,
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
@@ -247,13 +247,10 @@ class BaseDevice(QObject):
247
247
  np.ndarray:
248
248
  Extracted biosignal channels.
249
249
  """
250
-
250
+ biosignal_data = data[self._biosignal_channel_indices]
251
251
  if milli_volts:
252
- return (
253
- data[self._biosignal_channel_indices]
254
- * self._conversion_factor_biosignal
255
- )
256
- return data[self._biosignal_channel_indices]
252
+ return biosignal_data * self._conversion_factor_biosignal
253
+ return biosignal_data
257
254
 
258
255
  def _extract_auxiliary_data(
259
256
  self, data: np.ndarray, milli_volts: bool = True
@@ -1,9 +1,21 @@
1
- # Import OTB Devices to be used from biosignal_device_interface.devices
2
- # import Muovi, Quattrocento, QuattrocentoLight, ...
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 Devices
5
- from biosignal_device_interface.devices.otb.otb_quattrocento import (
6
- OTBQuattrocento as Quattrocento,
7
- OTBQuattrocentoLight as QuattrocentoLight,
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
@@ -126,9 +126,9 @@ class OTBMuovi(BaseDevice):
126
126
  return True
127
127
 
128
128
  def configure_device(
129
- self, settings: Dict[str, Union[Enum, Dict[str, Enum]]] # type: ignore
129
+ self, params: Dict[str, Union[Enum, Dict[str, Enum]]] # type: ignore
130
130
  ) -> None:
131
- super().configure_device(settings)
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, data: bytearray) -> None:
237
- super()._process_data(data)
236
+ def _process_data(self, input: bytearray) -> None:
237
+ super()._process_data(input)
238
238
 
239
- decoded_data = self._bytes_to_integers(data)
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.otb.otb_quattrocento_constants import (
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, settings: Dict[str, Union[Enum, Dict[str, Enum]]] # type: ignore
113
+ self, params: Dict[str, Union[Enum, Dict[str, Enum]]] # type: ignore
114
114
  ) -> None:
115
- super().configure_device(settings)
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
@@ -167,14 +167,13 @@ class OTBQuattrocentoLight(BaseDevice):
167
167
  super()._read_data()
168
168
 
169
169
  # Wait for connection response
170
- if not self._is_connected:
171
- if self._interface.bytesAvailable() == len(CONNECTION_RESPONSE):
172
- if self._interface.readAll() == CONNECTION_RESPONSE:
173
-
174
- self._is_connected = True
175
- self.connect_toggled.emit(True)
176
- return
177
-
170
+ if not self._is_connected and (
171
+ self._interface.bytesAvailable() == len(CONNECTION_RESPONSE)
172
+ and self._interface.readAll() == CONNECTION_RESPONSE
173
+ ):
174
+ self._is_connected = True
175
+ self.connect_toggled.emit(True)
176
+ return
178
177
  if not self._is_streaming:
179
178
  self.clear_socket()
180
179
  return
@@ -191,11 +190,11 @@ class OTBQuattrocentoLight(BaseDevice):
191
190
  self._process_data(data_to_process)
192
191
  self._received_bytes = self._received_bytes[self._buffer_size :]
193
192
 
194
- def _process_data(self, data: bytearray) -> None:
195
- super()._process_data(data)
193
+ def _process_data(self, input: bytearray) -> None:
194
+ super()._process_data(input)
196
195
 
197
196
  # Decode the data
198
- decoded_data = np.frombuffer(data, dtype=np.int16)
197
+ decoded_data = np.frombuffer(input, dtype=np.int16)
199
198
 
200
199
  # Reshape it to the correct format
201
200
  processed_data = decoded_data.reshape(
@@ -204,32 +203,11 @@ class OTBQuattrocentoLight(BaseDevice):
204
203
 
205
204
  # Emit the data
206
205
  self.data_available.emit(processed_data)
207
- self.biosignal_data_available.emit(self._extract_biosignal_data(processed_data))
208
- self.auxiliary_data_available.emit(self._extract_auxiliary_data(processed_data))
209
-
210
- def get_device_information(self) -> Dict[str, Enum | int | float | str]:
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
206
 
227
- # Device Parameters
228
- self._device_type: DeviceType = DeviceType.OTB_QUATTROCENTO
207
+ biosignal_data = self._extract_biosignal_data(processed_data)
208
+ self.biosignal_data_available.emit(biosignal_data)
209
+ auxiliary_data = self._extract_auxiliary_data(processed_data)
210
+ self.auxiliary_data_available.emit(auxiliary_data)
229
211
 
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()
212
+ def get_device_information(self) -> Dict[str, Enum | int | float | str]: # type: ignore
213
+ return super().get_device_information()
@@ -1,6 +0,0 @@
1
- # OTB Devices
2
- from biosignal_device_interface.gui.device_template_widgets.otb import (
3
- MuoviWidget,
4
- MuoviPlusWidget,
5
- QuattrocentoLightWidget,
6
- )
@@ -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
- MuoviPlusWidget,
19
- MuoviWidget,
20
- QuattrocentoLightWidget,
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: QuattrocentoLightWidget(self),
36
- DeviceType.OTB_MUOVI: MuoviWidget(self),
37
- DeviceType.OTB_MUOVI_PLUS: MuoviPlusWidget(self),
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)
@@ -49,9 +49,6 @@ class BaseMultipleDevicesWidget(QWidget):
49
49
 
50
50
  self.device_stacked_widget = self.ui.deviceStackedWidget
51
51
  self.device_selection_combo_box = self.ui.deviceSelectionComboBox
52
- self.device_selection_combo_box.currentIndexChanged.connect(
53
- self._update_stacked_widget
54
- )
55
52
 
56
53
  def get_device_information(self) -> Dict[str, Union[str, int]]:
57
54
  return self._get_current_widget().get_device_information()
@@ -76,13 +73,16 @@ class BaseMultipleDevicesWidget(QWidget):
76
73
  current_widget.stream_toggled.disconnect(self.stream_toggled)
77
74
 
78
75
  except (TypeError, RuntimeError):
79
- pass
76
+ ...
80
77
 
81
78
  self.device_stacked_widget.setCurrentIndex(index)
82
79
  current_widget = self._get_current_widget()
83
80
 
81
+ # Data arrived
84
82
  current_widget.data_arrived.connect(self.data_arrived.emit)
83
+ # Biosignal data arrived
85
84
  current_widget.biosignal_data_arrived.connect(self.biosignal_data_arrived.emit)
85
+ # Auxiliary data arrived
86
86
  current_widget.auxiliary_data_arrived.connect(self.auxiliary_data_arrived.emit)
87
87
 
88
88
  current_widget.connect_toggled.connect(self.connect_toggled)
@@ -97,6 +97,9 @@ class BaseMultipleDevicesWidget(QWidget):
97
97
  self.device_selection_combo_box.addItem(DEVICE_NAME_DICT[device_type])
98
98
 
99
99
  self._update_stacked_widget(0)
100
+ self.device_selection_combo_box.currentIndexChanged.connect(
101
+ self._update_stacked_widget
102
+ )
100
103
 
101
104
  def _get_current_widget(self) -> BaseDeviceWidget:
102
105
  return self.device_stacked_widget.currentWidget()
@@ -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
- MuoviPlusWidget,
12
- MuoviWidget,
13
- QuattrocentoLightWidget,
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:
@@ -25,8 +29,8 @@ class OTBDevicesWidget(BaseMultipleDevicesWidget):
25
29
  super().__init__(parent)
26
30
 
27
31
  self._device_selection: Dict[DeviceType, BaseDeviceWidget] = {
28
- DeviceType.OTB_QUATTROCENTO_LIGHT: QuattrocentoLightWidget(self),
29
- DeviceType.OTB_MUOVI: MuoviWidget(self),
30
- DeviceType.OTB_MUOVI_PLUS: MuoviPlusWidget(self),
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,7 +7,7 @@ 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
13
  from biosignal_device_interface.constants.devices.otb.otb_muovi_constants import (
@@ -27,7 +27,7 @@ if TYPE_CHECKING:
27
27
  )
28
28
 
29
29
 
30
- class OTBMuoviWidget(BaseDeviceWidget):
30
+ class OTBMuoviPlusWidget(BaseDeviceWidget):
31
31
  def __init__(self, parent: QWidget | QMainWindow | None = None):
32
32
  super().__init__(parent)
33
33
 
@@ -7,7 +7,7 @@ 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
13
  from biosignal_device_interface.constants.devices.otb.otb_muovi_constants import (
@@ -27,7 +27,7 @@ if TYPE_CHECKING:
27
27
  )
28
28
 
29
29
 
30
- class MuoviWidget(BaseDeviceWidget):
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.otb.otb_quattrocento_constants import (
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 QuattrocentoLightWidget(BaseDeviceWidget):
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))
@@ -95,12 +95,16 @@ class BiosignalPlotWidget(QWidget):
95
95
  def configure(
96
96
  self,
97
97
  lines: int,
98
- sampling_freuqency: int = 2000,
98
+ sampling_frequency: int = 2000,
99
+ plot_sampling_frequency: int | None = None,
99
100
  display_time: int = 10,
101
+ line_height: int = 50,
100
102
  background_color: np.ndarray = np.array([18.0, 18.0, 18.0, 1]),
101
103
  ):
102
104
  self.number_of_lines = lines
103
- self.external_sampling_frequency = sampling_freuqency
105
+ self.external_sampling_frequency = sampling_frequency
106
+ if plot_sampling_frequency is not None:
107
+ self.internal_sampling_frequency_threshold = plot_sampling_frequency
104
108
 
105
109
  if (
106
110
  self.external_sampling_frequency
@@ -129,7 +133,7 @@ class BiosignalPlotWidget(QWidget):
129
133
  )
130
134
 
131
135
  self.space_for_each_line = min(
132
- int(self.max_texture_size // self.number_of_lines // 1.5), 50
136
+ int(self.max_texture_size // self.number_of_lines // 1.5), line_height
133
137
  )
134
138
 
135
139
  self.canvas.configure(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: biosignal-device-interface
3
- Version: 0.1.11b0
3
+ Version: 0.1.311
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.com/NsquaredLab/Biosignal-Device-Interface/-/wikis/home"><strong>Explore the docs »</strong></a>
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.com/NsquaredLab/Biosignal-Device-Interface).
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 -->
@@ -1,26 +1,27 @@
1
- biosignal_device_interface/__init__.py,sha256=zzxMBmt9dnlXOvFvjyi0EPZxlNgGIC1ORa0KK2b1YOI,159
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=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
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/otb_constants.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
6
  biosignal_device_interface/constants/devices/otb/otb_muovi_constants.py,sha256=LTmvSm6RMf_wg6wdQaZW3lM2ygdWzZezLI1pxv0OOoc,4319
6
- biosignal_device_interface/constants/devices/otb/otb_quattrocento_constants.py,sha256=0YGDhfYSMMae9oRnpYeyk61ZA2K4ahTb-xdwsEh0j3Y,1712
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=ulJmJuDa42tyjS5D4iQSyS8YrSxOMyL6IFa2XXsXkME,352
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
- biosignal_device_interface/devices/core/base_device.py,sha256=4X0-QJ7_ib5Qb2MuOPuEP7xpXWIA0ZfPHMAzGtu8dEI,14149
11
- biosignal_device_interface/devices/otb/__init__.py,sha256=9hJR4tdLEKJ7xLEpEtdVlAltkwRraaWdxczxqV_EBmI,384
12
- biosignal_device_interface/devices/otb/otb_muovi.py,sha256=aD6BY_Jo-ufPyPjUZvpPX2B7AQoW8sUnx2YryrRJ0YQ,10341
13
- biosignal_device_interface/devices/otb/otb_quattrocento.py,sha256=GCbiuvzGgOqr3CGGlVppb1m7IYMpbWKIQteKCFZ7sSs,8038
14
- biosignal_device_interface/gui/device_template_widgets/__init__.py,sha256=7F_wMg-99TAEEUFgx2Ye72pzISfGcDDg3W8fYsdUOy4,162
15
- biosignal_device_interface/gui/device_template_widgets/all_devices_widget.py,sha256=RhwC04IcpoaZ-S38Y0zWqQYmatQRTtSMHQB-p9jUqZQ,1350
11
+ biosignal_device_interface/devices/core/base_device.py,sha256=g15i4esoXQF_-q_-_rc0VYkv-PJOMbiYzEzF7mGsNZA,14114
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=9oErFEp4AjhfhLeMzAYkSfRQTDCG19Tpzhde-kaOv7o,7410
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
- 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=gvl_g4k6k7cxk1YZlLWhNnwj0zfW4lzeQSUHY5MnTzw,403
19
- biosignal_device_interface/gui/device_template_widgets/otb/otb_devices_widget.py,sha256=GJ1JKyjDtqMsYrcboH8lHDiUKd97nkiCGixfpvUKvCc,1172
20
- biosignal_device_interface/gui/device_template_widgets/otb/otb_muovi_plus_widget.py,sha256=3zHdlBhri6L5mRIaCR-y6XVyW4B1-TfEN0yhNBQDvpo,6089
21
- biosignal_device_interface/gui/device_template_widgets/otb/otb_muovi_widget.py,sha256=3lrcd_UQOKWxViTV7v9uQ8Q4D95IcsleZl4Avdradc4,6066
22
- biosignal_device_interface/gui/device_template_widgets/otb/otb_quattrocento_light_widget.py,sha256=M3sbeZ-oiQ_eKMIYOFd4rVN9k_jZZGMO4A2MUo61KII,6677
23
- biosignal_device_interface/gui/plot_widgets/biosignal_plot_widget.py,sha256=9Hprby5B4c1A7nZpigX-Y1-O99TQ4cEadNct5PlTQss,18557
18
+ biosignal_device_interface/gui/device_template_widgets/core/base_multiple_devices_widget.py,sha256=OKMwKRSje07h8UsscuZUwkneDKQuO_F8EIwUNbou62Y,4079
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
24
+ biosignal_device_interface/gui/plot_widgets/biosignal_plot_widget.py,sha256=2pBMrEtFUtIHnyUrzv8j-H7F3LAQJmglBNez8hItlqc,18782
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
26
27
  biosignal_device_interface/gui/ui/otb_muovi_template_widget.ui,sha256=l2_MXTZCM6YZyDeNUFPU5UXGq02XAYI7gP9NguzQZvU,4906
@@ -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.11b0.dist-info/LICENSE,sha256=SKg6bjn3svFmdjswd2EyyamaqBbxfLBvh61bhUKntx8,19045
33
- biosignal_device_interface-0.1.11b0.dist-info/METADATA,sha256=4SH4BhHOoVKyZecMcxi0je-fJi26eky7g9dXRjZBCxQ,4025
34
- biosignal_device_interface-0.1.11b0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
35
- biosignal_device_interface-0.1.11b0.dist-info/RECORD,,
33
+ biosignal_device_interface-0.1.311.dist-info/LICENSE,sha256=SKg6bjn3svFmdjswd2EyyamaqBbxfLBvh61bhUKntx8,19045
34
+ biosignal_device_interface-0.1.311.dist-info/METADATA,sha256=cSQb1WP7oqsMC7Tuy1O8Htlhf_z4DDIsvK0I8VxC3jw,3822
35
+ biosignal_device_interface-0.1.311.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
36
+ biosignal_device_interface-0.1.311.dist-info/RECORD,,