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.
- biosignal_device_interface/constants/devices/__init__.py +3 -3
- biosignal_device_interface/constants/devices/core/base_device_constants.py +61 -61
- biosignal_device_interface/constants/devices/otb/otb_muovi_constants.py +129 -129
- biosignal_device_interface/constants/devices/otb/otb_quattrocento_constants.py +313 -313
- biosignal_device_interface/constants/devices/otb/otb_quattrocento_light_constants.py +59 -59
- biosignal_device_interface/constants/devices/otb/otb_syncstation_constants.py +233 -233
- biosignal_device_interface/constants/plots/color_palette.py +59 -59
- biosignal_device_interface/devices/__init__.py +17 -17
- biosignal_device_interface/devices/core/base_device.py +424 -412
- biosignal_device_interface/devices/otb/__init__.py +29 -29
- biosignal_device_interface/devices/otb/otb_muovi.py +290 -290
- biosignal_device_interface/devices/otb/otb_quattrocento.py +332 -332
- biosignal_device_interface/devices/otb/otb_quattrocento_light.py +210 -210
- biosignal_device_interface/devices/otb/otb_syncstation.py +407 -407
- biosignal_device_interface/gui/device_template_widgets/all_devices_widget.py +51 -51
- biosignal_device_interface/gui/device_template_widgets/core/base_device_widget.py +130 -130
- biosignal_device_interface/gui/device_template_widgets/core/base_multiple_devices_widget.py +108 -108
- biosignal_device_interface/gui/device_template_widgets/otb/otb_devices_widget.py +44 -44
- biosignal_device_interface/gui/device_template_widgets/otb/otb_muovi_plus_widget.py +158 -158
- biosignal_device_interface/gui/device_template_widgets/otb/otb_muovi_widget.py +158 -158
- biosignal_device_interface/gui/device_template_widgets/otb/otb_quattrocento_light_widget.py +174 -174
- biosignal_device_interface/gui/device_template_widgets/otb/otb_quattrocento_widget.py +260 -260
- biosignal_device_interface/gui/device_template_widgets/otb/otb_syncstation_widget.py +262 -262
- biosignal_device_interface/gui/plot_widgets/biosignal_plot_widget.py +500 -501
- biosignal_device_interface/gui/ui/devices_template_widget.ui +38 -38
- biosignal_device_interface/gui/ui/otb_muovi_plus_template_widget.ui +171 -171
- biosignal_device_interface/gui/ui/otb_muovi_template_widget.ui +171 -171
- biosignal_device_interface/gui/ui/otb_quattrocento_light_template_widget.ui +266 -266
- biosignal_device_interface/gui/ui/otb_quattrocento_template_widget.ui +415 -415
- biosignal_device_interface/gui/ui/otb_syncstation_template_widget.ui +732 -732
- biosignal_device_interface/gui/ui_compiled/devices_template_widget.py +56 -56
- biosignal_device_interface/gui/ui_compiled/otb_muovi_plus_template_widget.py +153 -153
- biosignal_device_interface/gui/ui_compiled/otb_muovi_template_widget.py +153 -153
- biosignal_device_interface/gui/ui_compiled/otb_quattrocento_light_template_widget.py +217 -217
- biosignal_device_interface/gui/ui_compiled/otb_quattrocento_template_widget.py +318 -318
- biosignal_device_interface/gui/ui_compiled/otb_syncstation_template_widget.py +495 -495
- {biosignal_device_interface-0.2.1a1.dist-info → biosignal_device_interface-0.2.2.dist-info}/METADATA +3 -2
- biosignal_device_interface-0.2.2.dist-info/RECORD +46 -0
- {biosignal_device_interface-0.2.1a1.dist-info → biosignal_device_interface-0.2.2.dist-info}/WHEEL +1 -1
- {biosignal_device_interface-0.2.1a1.dist-info → biosignal_device_interface-0.2.2.dist-info/licenses}/LICENSE +675 -675
- biosignal_device_interface-0.2.1a1.dist-info/RECORD +0 -46
|
@@ -1,171 +1,171 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<ui version="4.0">
|
|
3
|
-
<class>MuoviForm</class>
|
|
4
|
-
<widget class="QWidget" name="MuoviForm">
|
|
5
|
-
<property name="geometry">
|
|
6
|
-
<rect>
|
|
7
|
-
<x>0</x>
|
|
8
|
-
<y>0</y>
|
|
9
|
-
<width>400</width>
|
|
10
|
-
<height>324</height>
|
|
11
|
-
</rect>
|
|
12
|
-
</property>
|
|
13
|
-
<property name="windowTitle">
|
|
14
|
-
<string>MuoviForm</string>
|
|
15
|
-
</property>
|
|
16
|
-
<layout class="QGridLayout" name="gridLayout">
|
|
17
|
-
<item row="4" column="0">
|
|
18
|
-
<spacer name="verticalSpacer">
|
|
19
|
-
<property name="orientation">
|
|
20
|
-
<enum>Qt::Vertical</enum>
|
|
21
|
-
</property>
|
|
22
|
-
<property name="sizeHint" stdset="0">
|
|
23
|
-
<size>
|
|
24
|
-
<width>20</width>
|
|
25
|
-
<height>86</height>
|
|
26
|
-
</size>
|
|
27
|
-
</property>
|
|
28
|
-
</spacer>
|
|
29
|
-
</item>
|
|
30
|
-
<item row="0" column="0" colspan="2">
|
|
31
|
-
<widget class="QGroupBox" name="connectionGroupBox">
|
|
32
|
-
<property name="title">
|
|
33
|
-
<string>Connection parameters</string>
|
|
34
|
-
</property>
|
|
35
|
-
<layout class="QGridLayout" name="gridLayout_7">
|
|
36
|
-
<item row="1" column="1">
|
|
37
|
-
<widget class="QLabel" name="connectionPortLabel">
|
|
38
|
-
<property name="text">
|
|
39
|
-
<string>54321</string>
|
|
40
|
-
</property>
|
|
41
|
-
</widget>
|
|
42
|
-
</item>
|
|
43
|
-
<item row="1" column="0">
|
|
44
|
-
<widget class="QLabel" name="label_7">
|
|
45
|
-
<property name="text">
|
|
46
|
-
<string>Port</string>
|
|
47
|
-
</property>
|
|
48
|
-
</widget>
|
|
49
|
-
</item>
|
|
50
|
-
<item row="0" column="0">
|
|
51
|
-
<widget class="QLabel" name="label_6">
|
|
52
|
-
<property name="text">
|
|
53
|
-
<string>IP</string>
|
|
54
|
-
</property>
|
|
55
|
-
</widget>
|
|
56
|
-
</item>
|
|
57
|
-
<item row="0" column="2">
|
|
58
|
-
<widget class="QPushButton" name="connectionUpdatePushButton">
|
|
59
|
-
<property name="text">
|
|
60
|
-
<string>Update</string>
|
|
61
|
-
</property>
|
|
62
|
-
</widget>
|
|
63
|
-
</item>
|
|
64
|
-
<item row="0" column="1">
|
|
65
|
-
<widget class="QComboBox" name="connectionIPComboBox"/>
|
|
66
|
-
</item>
|
|
67
|
-
</layout>
|
|
68
|
-
</widget>
|
|
69
|
-
</item>
|
|
70
|
-
<item row="2" column="0" rowspan="2" colspan="2">
|
|
71
|
-
<widget class="QGroupBox" name="commandsGroupBox">
|
|
72
|
-
<property name="title">
|
|
73
|
-
<string>Commands</string>
|
|
74
|
-
</property>
|
|
75
|
-
<layout class="QGridLayout" name="gridLayout_3">
|
|
76
|
-
<item row="0" column="0">
|
|
77
|
-
<widget class="QPushButton" name="commandConnectionPushButton">
|
|
78
|
-
<property name="text">
|
|
79
|
-
<string>Connect</string>
|
|
80
|
-
</property>
|
|
81
|
-
</widget>
|
|
82
|
-
</item>
|
|
83
|
-
<item row="1" column="0">
|
|
84
|
-
<widget class="QPushButton" name="commandConfigurationPushButton">
|
|
85
|
-
<property name="text">
|
|
86
|
-
<string>Configure</string>
|
|
87
|
-
</property>
|
|
88
|
-
</widget>
|
|
89
|
-
</item>
|
|
90
|
-
<item row="2" column="0">
|
|
91
|
-
<widget class="QPushButton" name="commandStreamPushButton">
|
|
92
|
-
<property name="text">
|
|
93
|
-
<string>Stream</string>
|
|
94
|
-
</property>
|
|
95
|
-
</widget>
|
|
96
|
-
</item>
|
|
97
|
-
</layout>
|
|
98
|
-
</widget>
|
|
99
|
-
</item>
|
|
100
|
-
<item row="1" column="0" colspan="2">
|
|
101
|
-
<widget class="QGroupBox" name="inputGroupBox">
|
|
102
|
-
<property name="title">
|
|
103
|
-
<string>Input Parameters</string>
|
|
104
|
-
</property>
|
|
105
|
-
<layout class="QGridLayout" name="gridLayout_4">
|
|
106
|
-
<item row="1" column="1">
|
|
107
|
-
<widget class="QComboBox" name="inputDetectionModeComboBox">
|
|
108
|
-
<property name="currentIndex">
|
|
109
|
-
<number>1</number>
|
|
110
|
-
</property>
|
|
111
|
-
<item>
|
|
112
|
-
<property name="text">
|
|
113
|
-
<string>Monopolar - High Gain</string>
|
|
114
|
-
</property>
|
|
115
|
-
</item>
|
|
116
|
-
<item>
|
|
117
|
-
<property name="text">
|
|
118
|
-
<string>Monopolar - Low Gain</string>
|
|
119
|
-
</property>
|
|
120
|
-
</item>
|
|
121
|
-
<item>
|
|
122
|
-
<property name="text">
|
|
123
|
-
<string>Impedance Check</string>
|
|
124
|
-
</property>
|
|
125
|
-
</item>
|
|
126
|
-
<item>
|
|
127
|
-
<property name="text">
|
|
128
|
-
<string>Test</string>
|
|
129
|
-
</property>
|
|
130
|
-
</item>
|
|
131
|
-
</widget>
|
|
132
|
-
</item>
|
|
133
|
-
<item row="1" column="0">
|
|
134
|
-
<widget class="QLabel" name="label_10">
|
|
135
|
-
<property name="text">
|
|
136
|
-
<string>Detection Mode</string>
|
|
137
|
-
</property>
|
|
138
|
-
</widget>
|
|
139
|
-
</item>
|
|
140
|
-
<item row="0" column="0">
|
|
141
|
-
<widget class="QLabel" name="label">
|
|
142
|
-
<property name="text">
|
|
143
|
-
<string>Working Mode</string>
|
|
144
|
-
</property>
|
|
145
|
-
</widget>
|
|
146
|
-
</item>
|
|
147
|
-
<item row="0" column="1">
|
|
148
|
-
<widget class="QComboBox" name="inputWorkingModeComboBox">
|
|
149
|
-
<property name="currentIndex">
|
|
150
|
-
<number>1</number>
|
|
151
|
-
</property>
|
|
152
|
-
<item>
|
|
153
|
-
<property name="text">
|
|
154
|
-
<string>EEG</string>
|
|
155
|
-
</property>
|
|
156
|
-
</item>
|
|
157
|
-
<item>
|
|
158
|
-
<property name="text">
|
|
159
|
-
<string>EMG</string>
|
|
160
|
-
</property>
|
|
161
|
-
</item>
|
|
162
|
-
</widget>
|
|
163
|
-
</item>
|
|
164
|
-
</layout>
|
|
165
|
-
</widget>
|
|
166
|
-
</item>
|
|
167
|
-
</layout>
|
|
168
|
-
</widget>
|
|
169
|
-
<resources/>
|
|
170
|
-
<connections/>
|
|
171
|
-
</ui>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<ui version="4.0">
|
|
3
|
+
<class>MuoviForm</class>
|
|
4
|
+
<widget class="QWidget" name="MuoviForm">
|
|
5
|
+
<property name="geometry">
|
|
6
|
+
<rect>
|
|
7
|
+
<x>0</x>
|
|
8
|
+
<y>0</y>
|
|
9
|
+
<width>400</width>
|
|
10
|
+
<height>324</height>
|
|
11
|
+
</rect>
|
|
12
|
+
</property>
|
|
13
|
+
<property name="windowTitle">
|
|
14
|
+
<string>MuoviForm</string>
|
|
15
|
+
</property>
|
|
16
|
+
<layout class="QGridLayout" name="gridLayout">
|
|
17
|
+
<item row="4" column="0">
|
|
18
|
+
<spacer name="verticalSpacer">
|
|
19
|
+
<property name="orientation">
|
|
20
|
+
<enum>Qt::Vertical</enum>
|
|
21
|
+
</property>
|
|
22
|
+
<property name="sizeHint" stdset="0">
|
|
23
|
+
<size>
|
|
24
|
+
<width>20</width>
|
|
25
|
+
<height>86</height>
|
|
26
|
+
</size>
|
|
27
|
+
</property>
|
|
28
|
+
</spacer>
|
|
29
|
+
</item>
|
|
30
|
+
<item row="0" column="0" colspan="2">
|
|
31
|
+
<widget class="QGroupBox" name="connectionGroupBox">
|
|
32
|
+
<property name="title">
|
|
33
|
+
<string>Connection parameters</string>
|
|
34
|
+
</property>
|
|
35
|
+
<layout class="QGridLayout" name="gridLayout_7">
|
|
36
|
+
<item row="1" column="1">
|
|
37
|
+
<widget class="QLabel" name="connectionPortLabel">
|
|
38
|
+
<property name="text">
|
|
39
|
+
<string>54321</string>
|
|
40
|
+
</property>
|
|
41
|
+
</widget>
|
|
42
|
+
</item>
|
|
43
|
+
<item row="1" column="0">
|
|
44
|
+
<widget class="QLabel" name="label_7">
|
|
45
|
+
<property name="text">
|
|
46
|
+
<string>Port</string>
|
|
47
|
+
</property>
|
|
48
|
+
</widget>
|
|
49
|
+
</item>
|
|
50
|
+
<item row="0" column="0">
|
|
51
|
+
<widget class="QLabel" name="label_6">
|
|
52
|
+
<property name="text">
|
|
53
|
+
<string>IP</string>
|
|
54
|
+
</property>
|
|
55
|
+
</widget>
|
|
56
|
+
</item>
|
|
57
|
+
<item row="0" column="2">
|
|
58
|
+
<widget class="QPushButton" name="connectionUpdatePushButton">
|
|
59
|
+
<property name="text">
|
|
60
|
+
<string>Update</string>
|
|
61
|
+
</property>
|
|
62
|
+
</widget>
|
|
63
|
+
</item>
|
|
64
|
+
<item row="0" column="1">
|
|
65
|
+
<widget class="QComboBox" name="connectionIPComboBox"/>
|
|
66
|
+
</item>
|
|
67
|
+
</layout>
|
|
68
|
+
</widget>
|
|
69
|
+
</item>
|
|
70
|
+
<item row="2" column="0" rowspan="2" colspan="2">
|
|
71
|
+
<widget class="QGroupBox" name="commandsGroupBox">
|
|
72
|
+
<property name="title">
|
|
73
|
+
<string>Commands</string>
|
|
74
|
+
</property>
|
|
75
|
+
<layout class="QGridLayout" name="gridLayout_3">
|
|
76
|
+
<item row="0" column="0">
|
|
77
|
+
<widget class="QPushButton" name="commandConnectionPushButton">
|
|
78
|
+
<property name="text">
|
|
79
|
+
<string>Connect</string>
|
|
80
|
+
</property>
|
|
81
|
+
</widget>
|
|
82
|
+
</item>
|
|
83
|
+
<item row="1" column="0">
|
|
84
|
+
<widget class="QPushButton" name="commandConfigurationPushButton">
|
|
85
|
+
<property name="text">
|
|
86
|
+
<string>Configure</string>
|
|
87
|
+
</property>
|
|
88
|
+
</widget>
|
|
89
|
+
</item>
|
|
90
|
+
<item row="2" column="0">
|
|
91
|
+
<widget class="QPushButton" name="commandStreamPushButton">
|
|
92
|
+
<property name="text">
|
|
93
|
+
<string>Stream</string>
|
|
94
|
+
</property>
|
|
95
|
+
</widget>
|
|
96
|
+
</item>
|
|
97
|
+
</layout>
|
|
98
|
+
</widget>
|
|
99
|
+
</item>
|
|
100
|
+
<item row="1" column="0" colspan="2">
|
|
101
|
+
<widget class="QGroupBox" name="inputGroupBox">
|
|
102
|
+
<property name="title">
|
|
103
|
+
<string>Input Parameters</string>
|
|
104
|
+
</property>
|
|
105
|
+
<layout class="QGridLayout" name="gridLayout_4">
|
|
106
|
+
<item row="1" column="1">
|
|
107
|
+
<widget class="QComboBox" name="inputDetectionModeComboBox">
|
|
108
|
+
<property name="currentIndex">
|
|
109
|
+
<number>1</number>
|
|
110
|
+
</property>
|
|
111
|
+
<item>
|
|
112
|
+
<property name="text">
|
|
113
|
+
<string>Monopolar - High Gain</string>
|
|
114
|
+
</property>
|
|
115
|
+
</item>
|
|
116
|
+
<item>
|
|
117
|
+
<property name="text">
|
|
118
|
+
<string>Monopolar - Low Gain</string>
|
|
119
|
+
</property>
|
|
120
|
+
</item>
|
|
121
|
+
<item>
|
|
122
|
+
<property name="text">
|
|
123
|
+
<string>Impedance Check</string>
|
|
124
|
+
</property>
|
|
125
|
+
</item>
|
|
126
|
+
<item>
|
|
127
|
+
<property name="text">
|
|
128
|
+
<string>Test</string>
|
|
129
|
+
</property>
|
|
130
|
+
</item>
|
|
131
|
+
</widget>
|
|
132
|
+
</item>
|
|
133
|
+
<item row="1" column="0">
|
|
134
|
+
<widget class="QLabel" name="label_10">
|
|
135
|
+
<property name="text">
|
|
136
|
+
<string>Detection Mode</string>
|
|
137
|
+
</property>
|
|
138
|
+
</widget>
|
|
139
|
+
</item>
|
|
140
|
+
<item row="0" column="0">
|
|
141
|
+
<widget class="QLabel" name="label">
|
|
142
|
+
<property name="text">
|
|
143
|
+
<string>Working Mode</string>
|
|
144
|
+
</property>
|
|
145
|
+
</widget>
|
|
146
|
+
</item>
|
|
147
|
+
<item row="0" column="1">
|
|
148
|
+
<widget class="QComboBox" name="inputWorkingModeComboBox">
|
|
149
|
+
<property name="currentIndex">
|
|
150
|
+
<number>1</number>
|
|
151
|
+
</property>
|
|
152
|
+
<item>
|
|
153
|
+
<property name="text">
|
|
154
|
+
<string>EEG</string>
|
|
155
|
+
</property>
|
|
156
|
+
</item>
|
|
157
|
+
<item>
|
|
158
|
+
<property name="text">
|
|
159
|
+
<string>EMG</string>
|
|
160
|
+
</property>
|
|
161
|
+
</item>
|
|
162
|
+
</widget>
|
|
163
|
+
</item>
|
|
164
|
+
</layout>
|
|
165
|
+
</widget>
|
|
166
|
+
</item>
|
|
167
|
+
</layout>
|
|
168
|
+
</widget>
|
|
169
|
+
<resources/>
|
|
170
|
+
<connections/>
|
|
171
|
+
</ui>
|