biosignal-device-interface 0.1.311__py3-none-any.whl → 0.2.1a2__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 (42) hide show
  1. biosignal_device_interface/constants/devices/__init__.py +3 -3
  2. biosignal_device_interface/constants/devices/core/base_device_constants.py +61 -51
  3. biosignal_device_interface/constants/devices/otb/otb_muovi_constants.py +129 -129
  4. biosignal_device_interface/constants/devices/otb/otb_quattrocento_constants.py +313 -0
  5. biosignal_device_interface/constants/devices/otb/otb_quattrocento_light_constants.py +59 -59
  6. biosignal_device_interface/constants/devices/otb/otb_syncstation_constants.py +233 -0
  7. biosignal_device_interface/constants/plots/color_palette.py +59 -59
  8. biosignal_device_interface/devices/__init__.py +17 -15
  9. biosignal_device_interface/devices/core/base_device.py +424 -410
  10. biosignal_device_interface/devices/otb/__init__.py +29 -21
  11. biosignal_device_interface/devices/otb/otb_muovi.py +290 -291
  12. biosignal_device_interface/devices/otb/otb_quattrocento.py +332 -0
  13. biosignal_device_interface/devices/otb/otb_quattrocento_light.py +210 -213
  14. biosignal_device_interface/devices/otb/otb_syncstation.py +407 -0
  15. biosignal_device_interface/gui/device_template_widgets/all_devices_widget.py +51 -43
  16. biosignal_device_interface/gui/device_template_widgets/core/base_device_widget.py +130 -121
  17. biosignal_device_interface/gui/device_template_widgets/core/base_multiple_devices_widget.py +108 -108
  18. biosignal_device_interface/gui/device_template_widgets/otb/otb_devices_widget.py +44 -36
  19. biosignal_device_interface/gui/device_template_widgets/otb/otb_muovi_plus_widget.py +158 -158
  20. biosignal_device_interface/gui/device_template_widgets/otb/otb_muovi_widget.py +158 -158
  21. biosignal_device_interface/gui/device_template_widgets/otb/otb_quattrocento_light_widget.py +174 -170
  22. biosignal_device_interface/gui/device_template_widgets/otb/otb_quattrocento_widget.py +260 -0
  23. biosignal_device_interface/gui/device_template_widgets/otb/otb_syncstation_widget.py +262 -0
  24. biosignal_device_interface/gui/plot_widgets/biosignal_plot_widget.py +501 -500
  25. biosignal_device_interface/gui/ui/devices_template_widget.ui +38 -38
  26. biosignal_device_interface/gui/ui/otb_muovi_plus_template_widget.ui +171 -171
  27. biosignal_device_interface/gui/ui/otb_muovi_template_widget.ui +171 -171
  28. biosignal_device_interface/gui/ui/otb_quattrocento_light_template_widget.ui +266 -266
  29. biosignal_device_interface/gui/ui/otb_quattrocento_template_widget.ui +415 -0
  30. biosignal_device_interface/gui/ui/otb_syncstation_template_widget.ui +732 -0
  31. biosignal_device_interface/gui/ui_compiled/devices_template_widget.py +56 -56
  32. biosignal_device_interface/gui/ui_compiled/otb_muovi_plus_template_widget.py +153 -153
  33. biosignal_device_interface/gui/ui_compiled/otb_muovi_template_widget.py +153 -153
  34. biosignal_device_interface/gui/ui_compiled/otb_quattrocento_light_template_widget.py +217 -217
  35. biosignal_device_interface/gui/ui_compiled/otb_quattrocento_template_widget.py +318 -0
  36. biosignal_device_interface/gui/ui_compiled/otb_syncstation_template_widget.py +495 -0
  37. biosignal_device_interface-0.2.1a2.dist-info/LICENSE +675 -0
  38. {biosignal_device_interface-0.1.311.dist-info → biosignal_device_interface-0.2.1a2.dist-info}/METADATA +6 -4
  39. biosignal_device_interface-0.2.1a2.dist-info/RECORD +46 -0
  40. {biosignal_device_interface-0.1.311.dist-info → biosignal_device_interface-0.2.1a2.dist-info}/WHEEL +1 -1
  41. biosignal_device_interface-0.1.311.dist-info/LICENSE +0 -395
  42. biosignal_device_interface-0.1.311.dist-info/RECORD +0 -36
@@ -1,266 +1,266 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <ui version="4.0">
3
- <class>QuattrocentoLightForm</class>
4
- <widget class="QWidget" name="QuattrocentoLightForm">
5
- <property name="geometry">
6
- <rect>
7
- <x>0</x>
8
- <y>0</y>
9
- <width>400</width>
10
- <height>422</height>
11
- </rect>
12
- </property>
13
- <property name="windowTitle">
14
- <string>Form</string>
15
- </property>
16
- <layout class="QGridLayout" name="gridLayout_2">
17
- <item row="0" column="0">
18
- <widget class="QWidget" name="widget" native="true">
19
- <layout class="QGridLayout" name="gridLayout_4">
20
- <item row="3" column="0">
21
- <widget class="QGroupBox" name="commandsGroupBox">
22
- <property name="title">
23
- <string>Commands</string>
24
- </property>
25
- <layout class="QGridLayout" name="gridLayout_3">
26
- <item row="0" column="0" rowspan="2">
27
- <widget class="QPushButton" name="commandConnectionPushButton">
28
- <property name="sizePolicy">
29
- <sizepolicy hsizetype="Minimum" vsizetype="Preferred">
30
- <horstretch>0</horstretch>
31
- <verstretch>0</verstretch>
32
- </sizepolicy>
33
- </property>
34
- <property name="text">
35
- <string>Connect</string>
36
- </property>
37
- </widget>
38
- </item>
39
- <item row="2" column="0">
40
- <widget class="QPushButton" name="commandConfigurationPushButton">
41
- <property name="sizePolicy">
42
- <sizepolicy hsizetype="Minimum" vsizetype="Preferred">
43
- <horstretch>0</horstretch>
44
- <verstretch>0</verstretch>
45
- </sizepolicy>
46
- </property>
47
- <property name="text">
48
- <string>Configure</string>
49
- </property>
50
- </widget>
51
- </item>
52
- <item row="3" column="0">
53
- <widget class="QPushButton" name="commandStreamPushButton">
54
- <property name="sizePolicy">
55
- <sizepolicy hsizetype="Minimum" vsizetype="Preferred">
56
- <horstretch>0</horstretch>
57
- <verstretch>0</verstretch>
58
- </sizepolicy>
59
- </property>
60
- <property name="text">
61
- <string>Stream</string>
62
- </property>
63
- </widget>
64
- </item>
65
- </layout>
66
- </widget>
67
- </item>
68
- <item row="2" column="0">
69
- <widget class="QGroupBox" name="gridSelectionGroupBox">
70
- <property name="title">
71
- <string>Grid Selection</string>
72
- </property>
73
- <layout class="QGridLayout" name="gridLayout_5">
74
- <item row="1" column="1">
75
- <widget class="QCheckBox" name="gridFourCheckBox">
76
- <property name="text">
77
- <string>Grid 4</string>
78
- </property>
79
- </widget>
80
- </item>
81
- <item row="1" column="0">
82
- <widget class="QCheckBox" name="gridThreeCheckBox">
83
- <property name="text">
84
- <string>Grid 3</string>
85
- </property>
86
- </widget>
87
- </item>
88
- <item row="1" column="2">
89
- <widget class="QCheckBox" name="gridFiveCheckBox">
90
- <property name="text">
91
- <string>Grid 5</string>
92
- </property>
93
- </widget>
94
- </item>
95
- <item row="1" column="3">
96
- <widget class="QCheckBox" name="gridSixCheckBox">
97
- <property name="text">
98
- <string>Grid 6</string>
99
- </property>
100
- </widget>
101
- </item>
102
- <item row="0" column="3">
103
- <widget class="QCheckBox" name="gridTwoCheckBox">
104
- <property name="layoutDirection">
105
- <enum>Qt::LeftToRight</enum>
106
- </property>
107
- <property name="text">
108
- <string>Grid 2</string>
109
- </property>
110
- </widget>
111
- </item>
112
- <item row="0" column="0">
113
- <widget class="QCheckBox" name="gridOneCheckBox">
114
- <property name="text">
115
- <string>Grid 1</string>
116
- </property>
117
- </widget>
118
- </item>
119
- </layout>
120
- </widget>
121
- </item>
122
- <item row="1" column="0">
123
- <widget class="QGroupBox" name="acquisitionGroupBox">
124
- <property name="title">
125
- <string>Acquisiton Parameters</string>
126
- </property>
127
- <layout class="QGridLayout" name="gridLayout">
128
- <item row="0" column="1">
129
- <widget class="QComboBox" name="acquisitionSamplingFrequencyComboBox">
130
- <property name="currentIndex">
131
- <number>1</number>
132
- </property>
133
- <item>
134
- <property name="text">
135
- <string>512</string>
136
- </property>
137
- </item>
138
- <item>
139
- <property name="text">
140
- <string>2048</string>
141
- </property>
142
- </item>
143
- <item>
144
- <property name="text">
145
- <string>5120</string>
146
- </property>
147
- </item>
148
- <item>
149
- <property name="text">
150
- <string>10240</string>
151
- </property>
152
- </item>
153
- </widget>
154
- </item>
155
- <item row="1" column="1">
156
- <widget class="QComboBox" name="acquisitionStreamingFrequencyComboBox">
157
- <property name="currentIndex">
158
- <number>5</number>
159
- </property>
160
- <item>
161
- <property name="text">
162
- <string>1</string>
163
- </property>
164
- </item>
165
- <item>
166
- <property name="text">
167
- <string>2</string>
168
- </property>
169
- </item>
170
- <item>
171
- <property name="text">
172
- <string>4</string>
173
- </property>
174
- </item>
175
- <item>
176
- <property name="text">
177
- <string>8</string>
178
- </property>
179
- </item>
180
- <item>
181
- <property name="text">
182
- <string>16</string>
183
- </property>
184
- </item>
185
- <item>
186
- <property name="text">
187
- <string>32</string>
188
- </property>
189
- </item>
190
- </widget>
191
- </item>
192
- <item row="1" column="0">
193
- <widget class="QLabel" name="label_2">
194
- <property name="text">
195
- <string>Streaming Frequency</string>
196
- </property>
197
- </widget>
198
- </item>
199
- <item row="0" column="0">
200
- <widget class="QLabel" name="label">
201
- <property name="text">
202
- <string>Sampling Frequency</string>
203
- </property>
204
- </widget>
205
- </item>
206
- </layout>
207
- </widget>
208
- </item>
209
- <item row="0" column="0">
210
- <widget class="QGroupBox" name="connectionGroupBox">
211
- <property name="title">
212
- <string>Connection parameters</string>
213
- </property>
214
- <layout class="QGridLayout" name="gridLayout_7">
215
- <item row="0" column="0">
216
- <widget class="QLabel" name="label_4">
217
- <property name="text">
218
- <string>IP</string>
219
- </property>
220
- </widget>
221
- </item>
222
- <item row="1" column="0">
223
- <widget class="QLabel" name="label_5">
224
- <property name="text">
225
- <string>Port</string>
226
- </property>
227
- </widget>
228
- </item>
229
- <item row="0" column="1">
230
- <widget class="QLabel" name="connectionIPLabel">
231
- <property name="text">
232
- <string>127.0.0.1</string>
233
- </property>
234
- </widget>
235
- </item>
236
- <item row="1" column="1">
237
- <widget class="QLabel" name="connectionPortLabel">
238
- <property name="text">
239
- <string>31000</string>
240
- </property>
241
- </widget>
242
- </item>
243
- </layout>
244
- </widget>
245
- </item>
246
- </layout>
247
- </widget>
248
- </item>
249
- <item row="1" column="0">
250
- <spacer name="verticalSpacer">
251
- <property name="orientation">
252
- <enum>Qt::Vertical</enum>
253
- </property>
254
- <property name="sizeHint" stdset="0">
255
- <size>
256
- <width>20</width>
257
- <height>40</height>
258
- </size>
259
- </property>
260
- </spacer>
261
- </item>
262
- </layout>
263
- </widget>
264
- <resources/>
265
- <connections/>
266
- </ui>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <ui version="4.0">
3
+ <class>QuattrocentoLightForm</class>
4
+ <widget class="QWidget" name="QuattrocentoLightForm">
5
+ <property name="geometry">
6
+ <rect>
7
+ <x>0</x>
8
+ <y>0</y>
9
+ <width>400</width>
10
+ <height>422</height>
11
+ </rect>
12
+ </property>
13
+ <property name="windowTitle">
14
+ <string>Form</string>
15
+ </property>
16
+ <layout class="QGridLayout" name="gridLayout_2">
17
+ <item row="0" column="0">
18
+ <widget class="QWidget" name="widget" native="true">
19
+ <layout class="QGridLayout" name="gridLayout_4">
20
+ <item row="3" column="0">
21
+ <widget class="QGroupBox" name="commandsGroupBox">
22
+ <property name="title">
23
+ <string>Commands</string>
24
+ </property>
25
+ <layout class="QGridLayout" name="gridLayout_3">
26
+ <item row="0" column="0" rowspan="2">
27
+ <widget class="QPushButton" name="commandConnectionPushButton">
28
+ <property name="sizePolicy">
29
+ <sizepolicy hsizetype="Minimum" vsizetype="Preferred">
30
+ <horstretch>0</horstretch>
31
+ <verstretch>0</verstretch>
32
+ </sizepolicy>
33
+ </property>
34
+ <property name="text">
35
+ <string>Connect</string>
36
+ </property>
37
+ </widget>
38
+ </item>
39
+ <item row="2" column="0">
40
+ <widget class="QPushButton" name="commandConfigurationPushButton">
41
+ <property name="sizePolicy">
42
+ <sizepolicy hsizetype="Minimum" vsizetype="Preferred">
43
+ <horstretch>0</horstretch>
44
+ <verstretch>0</verstretch>
45
+ </sizepolicy>
46
+ </property>
47
+ <property name="text">
48
+ <string>Configure</string>
49
+ </property>
50
+ </widget>
51
+ </item>
52
+ <item row="3" column="0">
53
+ <widget class="QPushButton" name="commandStreamPushButton">
54
+ <property name="sizePolicy">
55
+ <sizepolicy hsizetype="Minimum" vsizetype="Preferred">
56
+ <horstretch>0</horstretch>
57
+ <verstretch>0</verstretch>
58
+ </sizepolicy>
59
+ </property>
60
+ <property name="text">
61
+ <string>Stream</string>
62
+ </property>
63
+ </widget>
64
+ </item>
65
+ </layout>
66
+ </widget>
67
+ </item>
68
+ <item row="2" column="0">
69
+ <widget class="QGroupBox" name="gridSelectionGroupBox">
70
+ <property name="title">
71
+ <string>Grid Selection</string>
72
+ </property>
73
+ <layout class="QGridLayout" name="gridLayout_5">
74
+ <item row="1" column="1">
75
+ <widget class="QCheckBox" name="gridFourCheckBox">
76
+ <property name="text">
77
+ <string>Grid 4</string>
78
+ </property>
79
+ </widget>
80
+ </item>
81
+ <item row="1" column="0">
82
+ <widget class="QCheckBox" name="gridThreeCheckBox">
83
+ <property name="text">
84
+ <string>Grid 3</string>
85
+ </property>
86
+ </widget>
87
+ </item>
88
+ <item row="1" column="2">
89
+ <widget class="QCheckBox" name="gridFiveCheckBox">
90
+ <property name="text">
91
+ <string>Grid 5</string>
92
+ </property>
93
+ </widget>
94
+ </item>
95
+ <item row="1" column="3">
96
+ <widget class="QCheckBox" name="gridSixCheckBox">
97
+ <property name="text">
98
+ <string>Grid 6</string>
99
+ </property>
100
+ </widget>
101
+ </item>
102
+ <item row="0" column="3">
103
+ <widget class="QCheckBox" name="gridTwoCheckBox">
104
+ <property name="layoutDirection">
105
+ <enum>Qt::LeftToRight</enum>
106
+ </property>
107
+ <property name="text">
108
+ <string>Grid 2</string>
109
+ </property>
110
+ </widget>
111
+ </item>
112
+ <item row="0" column="0">
113
+ <widget class="QCheckBox" name="gridOneCheckBox">
114
+ <property name="text">
115
+ <string>Grid 1</string>
116
+ </property>
117
+ </widget>
118
+ </item>
119
+ </layout>
120
+ </widget>
121
+ </item>
122
+ <item row="1" column="0">
123
+ <widget class="QGroupBox" name="acquisitionGroupBox">
124
+ <property name="title">
125
+ <string>Acquisiton Parameters</string>
126
+ </property>
127
+ <layout class="QGridLayout" name="gridLayout">
128
+ <item row="0" column="1">
129
+ <widget class="QComboBox" name="acquisitionSamplingFrequencyComboBox">
130
+ <property name="currentIndex">
131
+ <number>1</number>
132
+ </property>
133
+ <item>
134
+ <property name="text">
135
+ <string>512</string>
136
+ </property>
137
+ </item>
138
+ <item>
139
+ <property name="text">
140
+ <string>2048</string>
141
+ </property>
142
+ </item>
143
+ <item>
144
+ <property name="text">
145
+ <string>5120</string>
146
+ </property>
147
+ </item>
148
+ <item>
149
+ <property name="text">
150
+ <string>10240</string>
151
+ </property>
152
+ </item>
153
+ </widget>
154
+ </item>
155
+ <item row="1" column="1">
156
+ <widget class="QComboBox" name="acquisitionStreamingFrequencyComboBox">
157
+ <property name="currentIndex">
158
+ <number>5</number>
159
+ </property>
160
+ <item>
161
+ <property name="text">
162
+ <string>1</string>
163
+ </property>
164
+ </item>
165
+ <item>
166
+ <property name="text">
167
+ <string>2</string>
168
+ </property>
169
+ </item>
170
+ <item>
171
+ <property name="text">
172
+ <string>4</string>
173
+ </property>
174
+ </item>
175
+ <item>
176
+ <property name="text">
177
+ <string>8</string>
178
+ </property>
179
+ </item>
180
+ <item>
181
+ <property name="text">
182
+ <string>16</string>
183
+ </property>
184
+ </item>
185
+ <item>
186
+ <property name="text">
187
+ <string>32</string>
188
+ </property>
189
+ </item>
190
+ </widget>
191
+ </item>
192
+ <item row="1" column="0">
193
+ <widget class="QLabel" name="label_2">
194
+ <property name="text">
195
+ <string>Streaming Frequency</string>
196
+ </property>
197
+ </widget>
198
+ </item>
199
+ <item row="0" column="0">
200
+ <widget class="QLabel" name="label">
201
+ <property name="text">
202
+ <string>Sampling Frequency</string>
203
+ </property>
204
+ </widget>
205
+ </item>
206
+ </layout>
207
+ </widget>
208
+ </item>
209
+ <item row="0" column="0">
210
+ <widget class="QGroupBox" name="connectionGroupBox">
211
+ <property name="title">
212
+ <string>Connection parameters</string>
213
+ </property>
214
+ <layout class="QGridLayout" name="gridLayout_7">
215
+ <item row="0" column="0">
216
+ <widget class="QLabel" name="label_4">
217
+ <property name="text">
218
+ <string>IP</string>
219
+ </property>
220
+ </widget>
221
+ </item>
222
+ <item row="1" column="0">
223
+ <widget class="QLabel" name="label_5">
224
+ <property name="text">
225
+ <string>Port</string>
226
+ </property>
227
+ </widget>
228
+ </item>
229
+ <item row="0" column="1">
230
+ <widget class="QLabel" name="connectionIPLabel">
231
+ <property name="text">
232
+ <string>127.0.0.1</string>
233
+ </property>
234
+ </widget>
235
+ </item>
236
+ <item row="1" column="1">
237
+ <widget class="QLabel" name="connectionPortLabel">
238
+ <property name="text">
239
+ <string>31000</string>
240
+ </property>
241
+ </widget>
242
+ </item>
243
+ </layout>
244
+ </widget>
245
+ </item>
246
+ </layout>
247
+ </widget>
248
+ </item>
249
+ <item row="1" column="0">
250
+ <spacer name="verticalSpacer">
251
+ <property name="orientation">
252
+ <enum>Qt::Vertical</enum>
253
+ </property>
254
+ <property name="sizeHint" stdset="0">
255
+ <size>
256
+ <width>20</width>
257
+ <height>40</height>
258
+ </size>
259
+ </property>
260
+ </spacer>
261
+ </item>
262
+ </layout>
263
+ </widget>
264
+ <resources/>
265
+ <connections/>
266
+ </ui>