biosignal-device-interface 0.1.0__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 (35) hide show
  1. biosignal_device_interface/__init__.py +4 -0
  2. biosignal_device_interface/constants/__init__.py +0 -0
  3. biosignal_device_interface/constants/devices/__init__.py +0 -0
  4. biosignal_device_interface/constants/devices/core/base_device_constants.py +51 -0
  5. biosignal_device_interface/constants/devices/otb/otb_muovi_constants.py +129 -0
  6. biosignal_device_interface/constants/devices/otb/otb_quattrocento_constants.py +59 -0
  7. biosignal_device_interface/constants/plots/color_palette.py +59 -0
  8. biosignal_device_interface/devices/__init__.py +9 -0
  9. biosignal_device_interface/devices/core/__init__.py +0 -0
  10. biosignal_device_interface/devices/core/base_device.py +413 -0
  11. biosignal_device_interface/devices/otb/__init__.py +9 -0
  12. biosignal_device_interface/devices/otb/otb_muovi.py +291 -0
  13. biosignal_device_interface/devices/otb/otb_quattrocento.py +235 -0
  14. biosignal_device_interface/gui/device_template_widgets/__init__.py +6 -0
  15. biosignal_device_interface/gui/device_template_widgets/all_devices_widget.py +39 -0
  16. biosignal_device_interface/gui/device_template_widgets/core/base_device_widget.py +121 -0
  17. biosignal_device_interface/gui/device_template_widgets/core/base_multiple_devices_widget.py +105 -0
  18. biosignal_device_interface/gui/device_template_widgets/otb/__init__.py +10 -0
  19. biosignal_device_interface/gui/device_template_widgets/otb/otb_devices_widget.py +32 -0
  20. biosignal_device_interface/gui/device_template_widgets/otb/otb_muovi_plus_widget.py +158 -0
  21. biosignal_device_interface/gui/device_template_widgets/otb/otb_muovi_widget.py +158 -0
  22. biosignal_device_interface/gui/device_template_widgets/otb/otb_quattrocento_light_widget.py +170 -0
  23. biosignal_device_interface/gui/plot_widgets/biosignal_plot_widget.py +496 -0
  24. biosignal_device_interface/gui/ui/devices_template_widget.ui +38 -0
  25. biosignal_device_interface/gui/ui/otb_muovi_plus_template_widget.ui +171 -0
  26. biosignal_device_interface/gui/ui/otb_muovi_template_widget.ui +171 -0
  27. biosignal_device_interface/gui/ui/otb_quattrocento_light_template_widget.ui +266 -0
  28. biosignal_device_interface/gui/ui_compiled/devices_template_widget.py +56 -0
  29. biosignal_device_interface/gui/ui_compiled/otb_muovi_plus_template_widget.py +153 -0
  30. biosignal_device_interface/gui/ui_compiled/otb_muovi_template_widget.py +153 -0
  31. biosignal_device_interface/gui/ui_compiled/otb_quattrocento_light_template_widget.py +217 -0
  32. biosignal_device_interface-0.1.0.dist-info/LICENSE +395 -0
  33. biosignal_device_interface-0.1.0.dist-info/METADATA +138 -0
  34. biosignal_device_interface-0.1.0.dist-info/RECORD +35 -0
  35. biosignal_device_interface-0.1.0.dist-info/WHEEL +4 -0
@@ -0,0 +1,153 @@
1
+ # -*- coding: utf-8 -*-
2
+
3
+ ################################################################################
4
+ ## Form generated from reading UI file 'muovi_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, QComboBox, QGridLayout, QGroupBox,
19
+ QLabel, QPushButton, QSizePolicy, QSpacerItem,
20
+ QWidget)
21
+
22
+ class Ui_MuoviForm(object):
23
+ def setupUi(self, MuoviForm):
24
+ if not MuoviForm.objectName():
25
+ MuoviForm.setObjectName(u"MuoviForm")
26
+ MuoviForm.resize(400, 324)
27
+ self.gridLayout = QGridLayout(MuoviForm)
28
+ self.gridLayout.setObjectName(u"gridLayout")
29
+ self.verticalSpacer = QSpacerItem(20, 86, QSizePolicy.Minimum, QSizePolicy.Expanding)
30
+
31
+ self.gridLayout.addItem(self.verticalSpacer, 4, 0, 1, 1)
32
+
33
+ self.connectionGroupBox = QGroupBox(MuoviForm)
34
+ self.connectionGroupBox.setObjectName(u"connectionGroupBox")
35
+ self.gridLayout_7 = QGridLayout(self.connectionGroupBox)
36
+ self.gridLayout_7.setObjectName(u"gridLayout_7")
37
+ self.connectionPortLabel = QLabel(self.connectionGroupBox)
38
+ self.connectionPortLabel.setObjectName(u"connectionPortLabel")
39
+
40
+ self.gridLayout_7.addWidget(self.connectionPortLabel, 1, 1, 1, 1)
41
+
42
+ self.label_7 = QLabel(self.connectionGroupBox)
43
+ self.label_7.setObjectName(u"label_7")
44
+
45
+ self.gridLayout_7.addWidget(self.label_7, 1, 0, 1, 1)
46
+
47
+ self.label_6 = QLabel(self.connectionGroupBox)
48
+ self.label_6.setObjectName(u"label_6")
49
+
50
+ self.gridLayout_7.addWidget(self.label_6, 0, 0, 1, 1)
51
+
52
+ self.connectionUpdatePushButton = QPushButton(self.connectionGroupBox)
53
+ self.connectionUpdatePushButton.setObjectName(u"connectionUpdatePushButton")
54
+
55
+ self.gridLayout_7.addWidget(self.connectionUpdatePushButton, 0, 2, 1, 1)
56
+
57
+ self.connectionIPComboBox = QComboBox(self.connectionGroupBox)
58
+ self.connectionIPComboBox.setObjectName(u"connectionIPComboBox")
59
+
60
+ self.gridLayout_7.addWidget(self.connectionIPComboBox, 0, 1, 1, 1)
61
+
62
+
63
+ self.gridLayout.addWidget(self.connectionGroupBox, 0, 0, 1, 2)
64
+
65
+ self.commandsGroupBox = QGroupBox(MuoviForm)
66
+ self.commandsGroupBox.setObjectName(u"commandsGroupBox")
67
+ self.gridLayout_3 = QGridLayout(self.commandsGroupBox)
68
+ self.gridLayout_3.setObjectName(u"gridLayout_3")
69
+ self.commandConnectionPushButton = QPushButton(self.commandsGroupBox)
70
+ self.commandConnectionPushButton.setObjectName(u"commandConnectionPushButton")
71
+
72
+ self.gridLayout_3.addWidget(self.commandConnectionPushButton, 0, 0, 1, 1)
73
+
74
+ self.commandConfigurationPushButton = QPushButton(self.commandsGroupBox)
75
+ self.commandConfigurationPushButton.setObjectName(u"commandConfigurationPushButton")
76
+
77
+ self.gridLayout_3.addWidget(self.commandConfigurationPushButton, 1, 0, 1, 1)
78
+
79
+ self.commandStreamPushButton = QPushButton(self.commandsGroupBox)
80
+ self.commandStreamPushButton.setObjectName(u"commandStreamPushButton")
81
+
82
+ self.gridLayout_3.addWidget(self.commandStreamPushButton, 2, 0, 1, 1)
83
+
84
+
85
+ self.gridLayout.addWidget(self.commandsGroupBox, 2, 0, 2, 2)
86
+
87
+ self.inputGroupBox = QGroupBox(MuoviForm)
88
+ self.inputGroupBox.setObjectName(u"inputGroupBox")
89
+ self.gridLayout_4 = QGridLayout(self.inputGroupBox)
90
+ self.gridLayout_4.setObjectName(u"gridLayout_4")
91
+ self.inputDetectionModeComboBox = QComboBox(self.inputGroupBox)
92
+ self.inputDetectionModeComboBox.addItem("")
93
+ self.inputDetectionModeComboBox.addItem("")
94
+ self.inputDetectionModeComboBox.addItem("")
95
+ self.inputDetectionModeComboBox.addItem("")
96
+ self.inputDetectionModeComboBox.setObjectName(u"inputDetectionModeComboBox")
97
+
98
+ self.gridLayout_4.addWidget(self.inputDetectionModeComboBox, 1, 1, 1, 1)
99
+
100
+ self.label_10 = QLabel(self.inputGroupBox)
101
+ self.label_10.setObjectName(u"label_10")
102
+
103
+ self.gridLayout_4.addWidget(self.label_10, 1, 0, 1, 1)
104
+
105
+ self.label = QLabel(self.inputGroupBox)
106
+ self.label.setObjectName(u"label")
107
+
108
+ self.gridLayout_4.addWidget(self.label, 0, 0, 1, 1)
109
+
110
+ self.inputWorkingModeComboBox = QComboBox(self.inputGroupBox)
111
+ self.inputWorkingModeComboBox.addItem("")
112
+ self.inputWorkingModeComboBox.addItem("")
113
+ self.inputWorkingModeComboBox.setObjectName(u"inputWorkingModeComboBox")
114
+
115
+ self.gridLayout_4.addWidget(self.inputWorkingModeComboBox, 0, 1, 1, 1)
116
+
117
+
118
+ self.gridLayout.addWidget(self.inputGroupBox, 1, 0, 1, 2)
119
+
120
+
121
+ self.retranslateUi(MuoviForm)
122
+
123
+ self.inputDetectionModeComboBox.setCurrentIndex(1)
124
+ self.inputWorkingModeComboBox.setCurrentIndex(1)
125
+
126
+
127
+ QMetaObject.connectSlotsByName(MuoviForm)
128
+ # setupUi
129
+
130
+ def retranslateUi(self, MuoviForm):
131
+ MuoviForm.setWindowTitle(QCoreApplication.translate("MuoviForm", u"MuoviForm", None))
132
+ self.connectionGroupBox.setTitle(QCoreApplication.translate("MuoviForm", u"Connection parameters", None))
133
+ self.connectionPortLabel.setText(QCoreApplication.translate("MuoviForm", u"54321", None))
134
+ self.label_7.setText(QCoreApplication.translate("MuoviForm", u"Port", None))
135
+ self.label_6.setText(QCoreApplication.translate("MuoviForm", u"IP", None))
136
+ self.connectionUpdatePushButton.setText(QCoreApplication.translate("MuoviForm", u"Update", None))
137
+ self.commandsGroupBox.setTitle(QCoreApplication.translate("MuoviForm", u"Commands", None))
138
+ self.commandConnectionPushButton.setText(QCoreApplication.translate("MuoviForm", u"Connect", None))
139
+ self.commandConfigurationPushButton.setText(QCoreApplication.translate("MuoviForm", u"Configure", None))
140
+ self.commandStreamPushButton.setText(QCoreApplication.translate("MuoviForm", u"Stream", None))
141
+ self.inputGroupBox.setTitle(QCoreApplication.translate("MuoviForm", u"Input Parameters", None))
142
+ self.inputDetectionModeComboBox.setItemText(0, QCoreApplication.translate("MuoviForm", u"Monopolar - High Gain", None))
143
+ self.inputDetectionModeComboBox.setItemText(1, QCoreApplication.translate("MuoviForm", u"Monopolar - Low Gain", None))
144
+ self.inputDetectionModeComboBox.setItemText(2, QCoreApplication.translate("MuoviForm", u"Impedance Check", None))
145
+ self.inputDetectionModeComboBox.setItemText(3, QCoreApplication.translate("MuoviForm", u"Test", None))
146
+
147
+ self.label_10.setText(QCoreApplication.translate("MuoviForm", u"Detection Mode", None))
148
+ self.label.setText(QCoreApplication.translate("MuoviForm", u"Working Mode", None))
149
+ self.inputWorkingModeComboBox.setItemText(0, QCoreApplication.translate("MuoviForm", u"EEG", None))
150
+ self.inputWorkingModeComboBox.setItemText(1, QCoreApplication.translate("MuoviForm", u"EMG", None))
151
+
152
+ # retranslateUi
153
+
@@ -0,0 +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
+