biosignal-device-interface 0.2.1a1__py3-none-any.whl → 0.2.2__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 (41) hide show
  1. biosignal_device_interface/constants/devices/__init__.py +3 -3
  2. biosignal_device_interface/constants/devices/core/base_device_constants.py +61 -61
  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 -313
  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 -233
  7. biosignal_device_interface/constants/plots/color_palette.py +59 -59
  8. biosignal_device_interface/devices/__init__.py +17 -17
  9. biosignal_device_interface/devices/core/base_device.py +424 -412
  10. biosignal_device_interface/devices/otb/__init__.py +29 -29
  11. biosignal_device_interface/devices/otb/otb_muovi.py +290 -290
  12. biosignal_device_interface/devices/otb/otb_quattrocento.py +332 -332
  13. biosignal_device_interface/devices/otb/otb_quattrocento_light.py +210 -210
  14. biosignal_device_interface/devices/otb/otb_syncstation.py +407 -407
  15. biosignal_device_interface/gui/device_template_widgets/all_devices_widget.py +51 -51
  16. biosignal_device_interface/gui/device_template_widgets/core/base_device_widget.py +130 -130
  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 -44
  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 -174
  22. biosignal_device_interface/gui/device_template_widgets/otb/otb_quattrocento_widget.py +260 -260
  23. biosignal_device_interface/gui/device_template_widgets/otb/otb_syncstation_widget.py +262 -262
  24. biosignal_device_interface/gui/plot_widgets/biosignal_plot_widget.py +500 -501
  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 -415
  30. biosignal_device_interface/gui/ui/otb_syncstation_template_widget.ui +732 -732
  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 -318
  36. biosignal_device_interface/gui/ui_compiled/otb_syncstation_template_widget.py +495 -495
  37. {biosignal_device_interface-0.2.1a1.dist-info → biosignal_device_interface-0.2.2.dist-info}/METADATA +3 -2
  38. biosignal_device_interface-0.2.2.dist-info/RECORD +46 -0
  39. {biosignal_device_interface-0.2.1a1.dist-info → biosignal_device_interface-0.2.2.dist-info}/WHEEL +1 -1
  40. {biosignal_device_interface-0.2.1a1.dist-info → biosignal_device_interface-0.2.2.dist-info/licenses}/LICENSE +675 -675
  41. biosignal_device_interface-0.2.1a1.dist-info/RECORD +0 -46
@@ -1,217 +1,217 @@
1
- # -*- coding: utf-8 -*-
2
-
3
- ################################################################################
4
- ## Form generated from reading UI file 'quattrocento_light_template_widget.ui'
5
- ##
6
- ## Created by: Qt User Interface Compiler version 6.6.0
7
- ##
8
- ## WARNING! All changes made in this file will be lost when recompiling UI file!
9
- ################################################################################
10
-
11
- from PySide6.QtCore import (QCoreApplication, QDate, QDateTime, QLocale,
12
- QMetaObject, QObject, QPoint, QRect,
13
- QSize, QTime, QUrl, Qt)
14
- from PySide6.QtGui import (QBrush, QColor, QConicalGradient, QCursor,
15
- QFont, QFontDatabase, QGradient, QIcon,
16
- QImage, QKeySequence, QLinearGradient, QPainter,
17
- QPalette, QPixmap, QRadialGradient, QTransform)
18
- from PySide6.QtWidgets import (QApplication, QCheckBox, QComboBox, QGridLayout,
19
- QGroupBox, QLabel, QPushButton, QSizePolicy,
20
- QSpacerItem, QWidget)
21
-
22
- class Ui_QuattrocentoLightForm(object):
23
- def setupUi(self, QuattrocentoLightForm):
24
- if not QuattrocentoLightForm.objectName():
25
- QuattrocentoLightForm.setObjectName(u"QuattrocentoLightForm")
26
- QuattrocentoLightForm.resize(400, 422)
27
- self.gridLayout_2 = QGridLayout(QuattrocentoLightForm)
28
- self.gridLayout_2.setObjectName(u"gridLayout_2")
29
- self.widget = QWidget(QuattrocentoLightForm)
30
- self.widget.setObjectName(u"widget")
31
- self.gridLayout_4 = QGridLayout(self.widget)
32
- self.gridLayout_4.setObjectName(u"gridLayout_4")
33
- self.commandsGroupBox = QGroupBox(self.widget)
34
- self.commandsGroupBox.setObjectName(u"commandsGroupBox")
35
- self.gridLayout_3 = QGridLayout(self.commandsGroupBox)
36
- self.gridLayout_3.setObjectName(u"gridLayout_3")
37
- self.commandConnectionPushButton = QPushButton(self.commandsGroupBox)
38
- self.commandConnectionPushButton.setObjectName(u"commandConnectionPushButton")
39
- sizePolicy = QSizePolicy(QSizePolicy.Minimum, QSizePolicy.Preferred)
40
- sizePolicy.setHorizontalStretch(0)
41
- sizePolicy.setVerticalStretch(0)
42
- sizePolicy.setHeightForWidth(self.commandConnectionPushButton.sizePolicy().hasHeightForWidth())
43
- self.commandConnectionPushButton.setSizePolicy(sizePolicy)
44
-
45
- self.gridLayout_3.addWidget(self.commandConnectionPushButton, 0, 0, 2, 1)
46
-
47
- self.commandConfigurationPushButton = QPushButton(self.commandsGroupBox)
48
- self.commandConfigurationPushButton.setObjectName(u"commandConfigurationPushButton")
49
- sizePolicy.setHeightForWidth(self.commandConfigurationPushButton.sizePolicy().hasHeightForWidth())
50
- self.commandConfigurationPushButton.setSizePolicy(sizePolicy)
51
-
52
- self.gridLayout_3.addWidget(self.commandConfigurationPushButton, 2, 0, 1, 1)
53
-
54
- self.commandStreamPushButton = QPushButton(self.commandsGroupBox)
55
- self.commandStreamPushButton.setObjectName(u"commandStreamPushButton")
56
- sizePolicy.setHeightForWidth(self.commandStreamPushButton.sizePolicy().hasHeightForWidth())
57
- self.commandStreamPushButton.setSizePolicy(sizePolicy)
58
-
59
- self.gridLayout_3.addWidget(self.commandStreamPushButton, 3, 0, 1, 1)
60
-
61
-
62
- self.gridLayout_4.addWidget(self.commandsGroupBox, 3, 0, 1, 1)
63
-
64
- self.gridSelectionGroupBox = QGroupBox(self.widget)
65
- self.gridSelectionGroupBox.setObjectName(u"gridSelectionGroupBox")
66
- self.gridLayout_5 = QGridLayout(self.gridSelectionGroupBox)
67
- self.gridLayout_5.setObjectName(u"gridLayout_5")
68
- self.gridFourCheckBox = QCheckBox(self.gridSelectionGroupBox)
69
- self.gridFourCheckBox.setObjectName(u"gridFourCheckBox")
70
-
71
- self.gridLayout_5.addWidget(self.gridFourCheckBox, 1, 1, 1, 1)
72
-
73
- self.gridThreeCheckBox = QCheckBox(self.gridSelectionGroupBox)
74
- self.gridThreeCheckBox.setObjectName(u"gridThreeCheckBox")
75
-
76
- self.gridLayout_5.addWidget(self.gridThreeCheckBox, 1, 0, 1, 1)
77
-
78
- self.gridFiveCheckBox = QCheckBox(self.gridSelectionGroupBox)
79
- self.gridFiveCheckBox.setObjectName(u"gridFiveCheckBox")
80
-
81
- self.gridLayout_5.addWidget(self.gridFiveCheckBox, 1, 2, 1, 1)
82
-
83
- self.gridSixCheckBox = QCheckBox(self.gridSelectionGroupBox)
84
- self.gridSixCheckBox.setObjectName(u"gridSixCheckBox")
85
-
86
- self.gridLayout_5.addWidget(self.gridSixCheckBox, 1, 3, 1, 1)
87
-
88
- self.gridTwoCheckBox = QCheckBox(self.gridSelectionGroupBox)
89
- self.gridTwoCheckBox.setObjectName(u"gridTwoCheckBox")
90
- self.gridTwoCheckBox.setLayoutDirection(Qt.LeftToRight)
91
-
92
- self.gridLayout_5.addWidget(self.gridTwoCheckBox, 0, 3, 1, 1)
93
-
94
- self.gridOneCheckBox = QCheckBox(self.gridSelectionGroupBox)
95
- self.gridOneCheckBox.setObjectName(u"gridOneCheckBox")
96
-
97
- self.gridLayout_5.addWidget(self.gridOneCheckBox, 0, 0, 1, 1)
98
-
99
-
100
- self.gridLayout_4.addWidget(self.gridSelectionGroupBox, 2, 0, 1, 1)
101
-
102
- self.acquisitionGroupBox = QGroupBox(self.widget)
103
- self.acquisitionGroupBox.setObjectName(u"acquisitionGroupBox")
104
- self.gridLayout = QGridLayout(self.acquisitionGroupBox)
105
- self.gridLayout.setObjectName(u"gridLayout")
106
- self.acquisitionSamplingFrequencyComboBox = QComboBox(self.acquisitionGroupBox)
107
- self.acquisitionSamplingFrequencyComboBox.addItem("")
108
- self.acquisitionSamplingFrequencyComboBox.addItem("")
109
- self.acquisitionSamplingFrequencyComboBox.addItem("")
110
- self.acquisitionSamplingFrequencyComboBox.addItem("")
111
- self.acquisitionSamplingFrequencyComboBox.setObjectName(u"acquisitionSamplingFrequencyComboBox")
112
-
113
- self.gridLayout.addWidget(self.acquisitionSamplingFrequencyComboBox, 0, 1, 1, 1)
114
-
115
- self.acquisitionStreamingFrequencyComboBox = QComboBox(self.acquisitionGroupBox)
116
- self.acquisitionStreamingFrequencyComboBox.addItem("")
117
- self.acquisitionStreamingFrequencyComboBox.addItem("")
118
- self.acquisitionStreamingFrequencyComboBox.addItem("")
119
- self.acquisitionStreamingFrequencyComboBox.addItem("")
120
- self.acquisitionStreamingFrequencyComboBox.addItem("")
121
- self.acquisitionStreamingFrequencyComboBox.addItem("")
122
- self.acquisitionStreamingFrequencyComboBox.setObjectName(u"acquisitionStreamingFrequencyComboBox")
123
-
124
- self.gridLayout.addWidget(self.acquisitionStreamingFrequencyComboBox, 1, 1, 1, 1)
125
-
126
- self.label_2 = QLabel(self.acquisitionGroupBox)
127
- self.label_2.setObjectName(u"label_2")
128
-
129
- self.gridLayout.addWidget(self.label_2, 1, 0, 1, 1)
130
-
131
- self.label = QLabel(self.acquisitionGroupBox)
132
- self.label.setObjectName(u"label")
133
-
134
- self.gridLayout.addWidget(self.label, 0, 0, 1, 1)
135
-
136
-
137
- self.gridLayout_4.addWidget(self.acquisitionGroupBox, 1, 0, 1, 1)
138
-
139
- self.connectionGroupBox = QGroupBox(self.widget)
140
- self.connectionGroupBox.setObjectName(u"connectionGroupBox")
141
- self.gridLayout_7 = QGridLayout(self.connectionGroupBox)
142
- self.gridLayout_7.setObjectName(u"gridLayout_7")
143
- self.label_4 = QLabel(self.connectionGroupBox)
144
- self.label_4.setObjectName(u"label_4")
145
-
146
- self.gridLayout_7.addWidget(self.label_4, 0, 0, 1, 1)
147
-
148
- self.label_5 = QLabel(self.connectionGroupBox)
149
- self.label_5.setObjectName(u"label_5")
150
-
151
- self.gridLayout_7.addWidget(self.label_5, 1, 0, 1, 1)
152
-
153
- self.connectionIPLabel = QLabel(self.connectionGroupBox)
154
- self.connectionIPLabel.setObjectName(u"connectionIPLabel")
155
-
156
- self.gridLayout_7.addWidget(self.connectionIPLabel, 0, 1, 1, 1)
157
-
158
- self.connectionPortLabel = QLabel(self.connectionGroupBox)
159
- self.connectionPortLabel.setObjectName(u"connectionPortLabel")
160
-
161
- self.gridLayout_7.addWidget(self.connectionPortLabel, 1, 1, 1, 1)
162
-
163
-
164
- self.gridLayout_4.addWidget(self.connectionGroupBox, 0, 0, 1, 1)
165
-
166
-
167
- self.gridLayout_2.addWidget(self.widget, 0, 0, 1, 1)
168
-
169
- self.verticalSpacer = QSpacerItem(20, 40, QSizePolicy.Minimum, QSizePolicy.Expanding)
170
-
171
- self.gridLayout_2.addItem(self.verticalSpacer, 1, 0, 1, 1)
172
-
173
-
174
- self.retranslateUi(QuattrocentoLightForm)
175
-
176
- self.acquisitionSamplingFrequencyComboBox.setCurrentIndex(1)
177
- self.acquisitionStreamingFrequencyComboBox.setCurrentIndex(5)
178
-
179
-
180
- QMetaObject.connectSlotsByName(QuattrocentoLightForm)
181
- # setupUi
182
-
183
- def retranslateUi(self, QuattrocentoLightForm):
184
- QuattrocentoLightForm.setWindowTitle(QCoreApplication.translate("QuattrocentoLightForm", u"Form", None))
185
- self.commandsGroupBox.setTitle(QCoreApplication.translate("QuattrocentoLightForm", u"Commands", None))
186
- self.commandConnectionPushButton.setText(QCoreApplication.translate("QuattrocentoLightForm", u"Connect", None))
187
- self.commandConfigurationPushButton.setText(QCoreApplication.translate("QuattrocentoLightForm", u"Configure", None))
188
- self.commandStreamPushButton.setText(QCoreApplication.translate("QuattrocentoLightForm", u"Stream", None))
189
- self.gridSelectionGroupBox.setTitle(QCoreApplication.translate("QuattrocentoLightForm", u"Grid Selection", None))
190
- self.gridFourCheckBox.setText(QCoreApplication.translate("QuattrocentoLightForm", u"Grid 4", None))
191
- self.gridThreeCheckBox.setText(QCoreApplication.translate("QuattrocentoLightForm", u"Grid 3", None))
192
- self.gridFiveCheckBox.setText(QCoreApplication.translate("QuattrocentoLightForm", u"Grid 5", None))
193
- self.gridSixCheckBox.setText(QCoreApplication.translate("QuattrocentoLightForm", u"Grid 6", None))
194
- self.gridTwoCheckBox.setText(QCoreApplication.translate("QuattrocentoLightForm", u"Grid 2", None))
195
- self.gridOneCheckBox.setText(QCoreApplication.translate("QuattrocentoLightForm", u"Grid 1", None))
196
- self.acquisitionGroupBox.setTitle(QCoreApplication.translate("QuattrocentoLightForm", u"Acquisiton Parameters", None))
197
- self.acquisitionSamplingFrequencyComboBox.setItemText(0, QCoreApplication.translate("QuattrocentoLightForm", u"512", None))
198
- self.acquisitionSamplingFrequencyComboBox.setItemText(1, QCoreApplication.translate("QuattrocentoLightForm", u"2048", None))
199
- self.acquisitionSamplingFrequencyComboBox.setItemText(2, QCoreApplication.translate("QuattrocentoLightForm", u"5120", None))
200
- self.acquisitionSamplingFrequencyComboBox.setItemText(3, QCoreApplication.translate("QuattrocentoLightForm", u"10240", None))
201
-
202
- self.acquisitionStreamingFrequencyComboBox.setItemText(0, QCoreApplication.translate("QuattrocentoLightForm", u"1", None))
203
- self.acquisitionStreamingFrequencyComboBox.setItemText(1, QCoreApplication.translate("QuattrocentoLightForm", u"2", None))
204
- self.acquisitionStreamingFrequencyComboBox.setItemText(2, QCoreApplication.translate("QuattrocentoLightForm", u"4", None))
205
- self.acquisitionStreamingFrequencyComboBox.setItemText(3, QCoreApplication.translate("QuattrocentoLightForm", u"8", None))
206
- self.acquisitionStreamingFrequencyComboBox.setItemText(4, QCoreApplication.translate("QuattrocentoLightForm", u"16", None))
207
- self.acquisitionStreamingFrequencyComboBox.setItemText(5, QCoreApplication.translate("QuattrocentoLightForm", u"32", None))
208
-
209
- self.label_2.setText(QCoreApplication.translate("QuattrocentoLightForm", u"Streaming Frequency", None))
210
- self.label.setText(QCoreApplication.translate("QuattrocentoLightForm", u"Sampling Frequency", None))
211
- self.connectionGroupBox.setTitle(QCoreApplication.translate("QuattrocentoLightForm", u"Connection parameters", None))
212
- self.label_4.setText(QCoreApplication.translate("QuattrocentoLightForm", u"IP", None))
213
- self.label_5.setText(QCoreApplication.translate("QuattrocentoLightForm", u"Port", None))
214
- self.connectionIPLabel.setText(QCoreApplication.translate("QuattrocentoLightForm", u"127.0.0.1", None))
215
- self.connectionPortLabel.setText(QCoreApplication.translate("QuattrocentoLightForm", u"31000", None))
216
- # retranslateUi
217
-
1
+ # -*- coding: utf-8 -*-
2
+
3
+ ################################################################################
4
+ ## Form generated from reading UI file 'quattrocento_light_template_widget.ui'
5
+ ##
6
+ ## Created by: Qt User Interface Compiler version 6.6.0
7
+ ##
8
+ ## WARNING! All changes made in this file will be lost when recompiling UI file!
9
+ ################################################################################
10
+
11
+ from PySide6.QtCore import (QCoreApplication, QDate, QDateTime, QLocale,
12
+ QMetaObject, QObject, QPoint, QRect,
13
+ QSize, QTime, QUrl, Qt)
14
+ from PySide6.QtGui import (QBrush, QColor, QConicalGradient, QCursor,
15
+ QFont, QFontDatabase, QGradient, QIcon,
16
+ QImage, QKeySequence, QLinearGradient, QPainter,
17
+ QPalette, QPixmap, QRadialGradient, QTransform)
18
+ from PySide6.QtWidgets import (QApplication, QCheckBox, QComboBox, QGridLayout,
19
+ QGroupBox, QLabel, QPushButton, QSizePolicy,
20
+ QSpacerItem, QWidget)
21
+
22
+ class Ui_QuattrocentoLightForm(object):
23
+ def setupUi(self, QuattrocentoLightForm):
24
+ if not QuattrocentoLightForm.objectName():
25
+ QuattrocentoLightForm.setObjectName(u"QuattrocentoLightForm")
26
+ QuattrocentoLightForm.resize(400, 422)
27
+ self.gridLayout_2 = QGridLayout(QuattrocentoLightForm)
28
+ self.gridLayout_2.setObjectName(u"gridLayout_2")
29
+ self.widget = QWidget(QuattrocentoLightForm)
30
+ self.widget.setObjectName(u"widget")
31
+ self.gridLayout_4 = QGridLayout(self.widget)
32
+ self.gridLayout_4.setObjectName(u"gridLayout_4")
33
+ self.commandsGroupBox = QGroupBox(self.widget)
34
+ self.commandsGroupBox.setObjectName(u"commandsGroupBox")
35
+ self.gridLayout_3 = QGridLayout(self.commandsGroupBox)
36
+ self.gridLayout_3.setObjectName(u"gridLayout_3")
37
+ self.commandConnectionPushButton = QPushButton(self.commandsGroupBox)
38
+ self.commandConnectionPushButton.setObjectName(u"commandConnectionPushButton")
39
+ sizePolicy = QSizePolicy(QSizePolicy.Minimum, QSizePolicy.Preferred)
40
+ sizePolicy.setHorizontalStretch(0)
41
+ sizePolicy.setVerticalStretch(0)
42
+ sizePolicy.setHeightForWidth(self.commandConnectionPushButton.sizePolicy().hasHeightForWidth())
43
+ self.commandConnectionPushButton.setSizePolicy(sizePolicy)
44
+
45
+ self.gridLayout_3.addWidget(self.commandConnectionPushButton, 0, 0, 2, 1)
46
+
47
+ self.commandConfigurationPushButton = QPushButton(self.commandsGroupBox)
48
+ self.commandConfigurationPushButton.setObjectName(u"commandConfigurationPushButton")
49
+ sizePolicy.setHeightForWidth(self.commandConfigurationPushButton.sizePolicy().hasHeightForWidth())
50
+ self.commandConfigurationPushButton.setSizePolicy(sizePolicy)
51
+
52
+ self.gridLayout_3.addWidget(self.commandConfigurationPushButton, 2, 0, 1, 1)
53
+
54
+ self.commandStreamPushButton = QPushButton(self.commandsGroupBox)
55
+ self.commandStreamPushButton.setObjectName(u"commandStreamPushButton")
56
+ sizePolicy.setHeightForWidth(self.commandStreamPushButton.sizePolicy().hasHeightForWidth())
57
+ self.commandStreamPushButton.setSizePolicy(sizePolicy)
58
+
59
+ self.gridLayout_3.addWidget(self.commandStreamPushButton, 3, 0, 1, 1)
60
+
61
+
62
+ self.gridLayout_4.addWidget(self.commandsGroupBox, 3, 0, 1, 1)
63
+
64
+ self.gridSelectionGroupBox = QGroupBox(self.widget)
65
+ self.gridSelectionGroupBox.setObjectName(u"gridSelectionGroupBox")
66
+ self.gridLayout_5 = QGridLayout(self.gridSelectionGroupBox)
67
+ self.gridLayout_5.setObjectName(u"gridLayout_5")
68
+ self.gridFourCheckBox = QCheckBox(self.gridSelectionGroupBox)
69
+ self.gridFourCheckBox.setObjectName(u"gridFourCheckBox")
70
+
71
+ self.gridLayout_5.addWidget(self.gridFourCheckBox, 1, 1, 1, 1)
72
+
73
+ self.gridThreeCheckBox = QCheckBox(self.gridSelectionGroupBox)
74
+ self.gridThreeCheckBox.setObjectName(u"gridThreeCheckBox")
75
+
76
+ self.gridLayout_5.addWidget(self.gridThreeCheckBox, 1, 0, 1, 1)
77
+
78
+ self.gridFiveCheckBox = QCheckBox(self.gridSelectionGroupBox)
79
+ self.gridFiveCheckBox.setObjectName(u"gridFiveCheckBox")
80
+
81
+ self.gridLayout_5.addWidget(self.gridFiveCheckBox, 1, 2, 1, 1)
82
+
83
+ self.gridSixCheckBox = QCheckBox(self.gridSelectionGroupBox)
84
+ self.gridSixCheckBox.setObjectName(u"gridSixCheckBox")
85
+
86
+ self.gridLayout_5.addWidget(self.gridSixCheckBox, 1, 3, 1, 1)
87
+
88
+ self.gridTwoCheckBox = QCheckBox(self.gridSelectionGroupBox)
89
+ self.gridTwoCheckBox.setObjectName(u"gridTwoCheckBox")
90
+ self.gridTwoCheckBox.setLayoutDirection(Qt.LeftToRight)
91
+
92
+ self.gridLayout_5.addWidget(self.gridTwoCheckBox, 0, 3, 1, 1)
93
+
94
+ self.gridOneCheckBox = QCheckBox(self.gridSelectionGroupBox)
95
+ self.gridOneCheckBox.setObjectName(u"gridOneCheckBox")
96
+
97
+ self.gridLayout_5.addWidget(self.gridOneCheckBox, 0, 0, 1, 1)
98
+
99
+
100
+ self.gridLayout_4.addWidget(self.gridSelectionGroupBox, 2, 0, 1, 1)
101
+
102
+ self.acquisitionGroupBox = QGroupBox(self.widget)
103
+ self.acquisitionGroupBox.setObjectName(u"acquisitionGroupBox")
104
+ self.gridLayout = QGridLayout(self.acquisitionGroupBox)
105
+ self.gridLayout.setObjectName(u"gridLayout")
106
+ self.acquisitionSamplingFrequencyComboBox = QComboBox(self.acquisitionGroupBox)
107
+ self.acquisitionSamplingFrequencyComboBox.addItem("")
108
+ self.acquisitionSamplingFrequencyComboBox.addItem("")
109
+ self.acquisitionSamplingFrequencyComboBox.addItem("")
110
+ self.acquisitionSamplingFrequencyComboBox.addItem("")
111
+ self.acquisitionSamplingFrequencyComboBox.setObjectName(u"acquisitionSamplingFrequencyComboBox")
112
+
113
+ self.gridLayout.addWidget(self.acquisitionSamplingFrequencyComboBox, 0, 1, 1, 1)
114
+
115
+ self.acquisitionStreamingFrequencyComboBox = QComboBox(self.acquisitionGroupBox)
116
+ self.acquisitionStreamingFrequencyComboBox.addItem("")
117
+ self.acquisitionStreamingFrequencyComboBox.addItem("")
118
+ self.acquisitionStreamingFrequencyComboBox.addItem("")
119
+ self.acquisitionStreamingFrequencyComboBox.addItem("")
120
+ self.acquisitionStreamingFrequencyComboBox.addItem("")
121
+ self.acquisitionStreamingFrequencyComboBox.addItem("")
122
+ self.acquisitionStreamingFrequencyComboBox.setObjectName(u"acquisitionStreamingFrequencyComboBox")
123
+
124
+ self.gridLayout.addWidget(self.acquisitionStreamingFrequencyComboBox, 1, 1, 1, 1)
125
+
126
+ self.label_2 = QLabel(self.acquisitionGroupBox)
127
+ self.label_2.setObjectName(u"label_2")
128
+
129
+ self.gridLayout.addWidget(self.label_2, 1, 0, 1, 1)
130
+
131
+ self.label = QLabel(self.acquisitionGroupBox)
132
+ self.label.setObjectName(u"label")
133
+
134
+ self.gridLayout.addWidget(self.label, 0, 0, 1, 1)
135
+
136
+
137
+ self.gridLayout_4.addWidget(self.acquisitionGroupBox, 1, 0, 1, 1)
138
+
139
+ self.connectionGroupBox = QGroupBox(self.widget)
140
+ self.connectionGroupBox.setObjectName(u"connectionGroupBox")
141
+ self.gridLayout_7 = QGridLayout(self.connectionGroupBox)
142
+ self.gridLayout_7.setObjectName(u"gridLayout_7")
143
+ self.label_4 = QLabel(self.connectionGroupBox)
144
+ self.label_4.setObjectName(u"label_4")
145
+
146
+ self.gridLayout_7.addWidget(self.label_4, 0, 0, 1, 1)
147
+
148
+ self.label_5 = QLabel(self.connectionGroupBox)
149
+ self.label_5.setObjectName(u"label_5")
150
+
151
+ self.gridLayout_7.addWidget(self.label_5, 1, 0, 1, 1)
152
+
153
+ self.connectionIPLabel = QLabel(self.connectionGroupBox)
154
+ self.connectionIPLabel.setObjectName(u"connectionIPLabel")
155
+
156
+ self.gridLayout_7.addWidget(self.connectionIPLabel, 0, 1, 1, 1)
157
+
158
+ self.connectionPortLabel = QLabel(self.connectionGroupBox)
159
+ self.connectionPortLabel.setObjectName(u"connectionPortLabel")
160
+
161
+ self.gridLayout_7.addWidget(self.connectionPortLabel, 1, 1, 1, 1)
162
+
163
+
164
+ self.gridLayout_4.addWidget(self.connectionGroupBox, 0, 0, 1, 1)
165
+
166
+
167
+ self.gridLayout_2.addWidget(self.widget, 0, 0, 1, 1)
168
+
169
+ self.verticalSpacer = QSpacerItem(20, 40, QSizePolicy.Minimum, QSizePolicy.Expanding)
170
+
171
+ self.gridLayout_2.addItem(self.verticalSpacer, 1, 0, 1, 1)
172
+
173
+
174
+ self.retranslateUi(QuattrocentoLightForm)
175
+
176
+ self.acquisitionSamplingFrequencyComboBox.setCurrentIndex(1)
177
+ self.acquisitionStreamingFrequencyComboBox.setCurrentIndex(5)
178
+
179
+
180
+ QMetaObject.connectSlotsByName(QuattrocentoLightForm)
181
+ # setupUi
182
+
183
+ def retranslateUi(self, QuattrocentoLightForm):
184
+ QuattrocentoLightForm.setWindowTitle(QCoreApplication.translate("QuattrocentoLightForm", u"Form", None))
185
+ self.commandsGroupBox.setTitle(QCoreApplication.translate("QuattrocentoLightForm", u"Commands", None))
186
+ self.commandConnectionPushButton.setText(QCoreApplication.translate("QuattrocentoLightForm", u"Connect", None))
187
+ self.commandConfigurationPushButton.setText(QCoreApplication.translate("QuattrocentoLightForm", u"Configure", None))
188
+ self.commandStreamPushButton.setText(QCoreApplication.translate("QuattrocentoLightForm", u"Stream", None))
189
+ self.gridSelectionGroupBox.setTitle(QCoreApplication.translate("QuattrocentoLightForm", u"Grid Selection", None))
190
+ self.gridFourCheckBox.setText(QCoreApplication.translate("QuattrocentoLightForm", u"Grid 4", None))
191
+ self.gridThreeCheckBox.setText(QCoreApplication.translate("QuattrocentoLightForm", u"Grid 3", None))
192
+ self.gridFiveCheckBox.setText(QCoreApplication.translate("QuattrocentoLightForm", u"Grid 5", None))
193
+ self.gridSixCheckBox.setText(QCoreApplication.translate("QuattrocentoLightForm", u"Grid 6", None))
194
+ self.gridTwoCheckBox.setText(QCoreApplication.translate("QuattrocentoLightForm", u"Grid 2", None))
195
+ self.gridOneCheckBox.setText(QCoreApplication.translate("QuattrocentoLightForm", u"Grid 1", None))
196
+ self.acquisitionGroupBox.setTitle(QCoreApplication.translate("QuattrocentoLightForm", u"Acquisiton Parameters", None))
197
+ self.acquisitionSamplingFrequencyComboBox.setItemText(0, QCoreApplication.translate("QuattrocentoLightForm", u"512", None))
198
+ self.acquisitionSamplingFrequencyComboBox.setItemText(1, QCoreApplication.translate("QuattrocentoLightForm", u"2048", None))
199
+ self.acquisitionSamplingFrequencyComboBox.setItemText(2, QCoreApplication.translate("QuattrocentoLightForm", u"5120", None))
200
+ self.acquisitionSamplingFrequencyComboBox.setItemText(3, QCoreApplication.translate("QuattrocentoLightForm", u"10240", None))
201
+
202
+ self.acquisitionStreamingFrequencyComboBox.setItemText(0, QCoreApplication.translate("QuattrocentoLightForm", u"1", None))
203
+ self.acquisitionStreamingFrequencyComboBox.setItemText(1, QCoreApplication.translate("QuattrocentoLightForm", u"2", None))
204
+ self.acquisitionStreamingFrequencyComboBox.setItemText(2, QCoreApplication.translate("QuattrocentoLightForm", u"4", None))
205
+ self.acquisitionStreamingFrequencyComboBox.setItemText(3, QCoreApplication.translate("QuattrocentoLightForm", u"8", None))
206
+ self.acquisitionStreamingFrequencyComboBox.setItemText(4, QCoreApplication.translate("QuattrocentoLightForm", u"16", None))
207
+ self.acquisitionStreamingFrequencyComboBox.setItemText(5, QCoreApplication.translate("QuattrocentoLightForm", u"32", None))
208
+
209
+ self.label_2.setText(QCoreApplication.translate("QuattrocentoLightForm", u"Streaming Frequency", None))
210
+ self.label.setText(QCoreApplication.translate("QuattrocentoLightForm", u"Sampling Frequency", None))
211
+ self.connectionGroupBox.setTitle(QCoreApplication.translate("QuattrocentoLightForm", u"Connection parameters", None))
212
+ self.label_4.setText(QCoreApplication.translate("QuattrocentoLightForm", u"IP", None))
213
+ self.label_5.setText(QCoreApplication.translate("QuattrocentoLightForm", u"Port", None))
214
+ self.connectionIPLabel.setText(QCoreApplication.translate("QuattrocentoLightForm", u"127.0.0.1", None))
215
+ self.connectionPortLabel.setText(QCoreApplication.translate("QuattrocentoLightForm", u"31000", None))
216
+ # retranslateUi
217
+