Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Brain
obci-readmanager
Commits
eaf9a598
Commit
eaf9a598
authored
Oct 17, 2017
by
Maciej Pawlisz
Browse files
#37294 headers normalization
parent
bd89ec0b
Pipeline
#6093
passed with stages
in 59 seconds
Changes
78
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
docs/conf.py
View file @
eaf9a598
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# obci_readmanager documentation build configuration file, created by
# sphinx-quickstart on Tue Sep 19 09:40:49 2017.
#
# This file is execfile()d with the current directory set to its
# containing dir.
#
# Note that not all possible configuration values are present in this
# autogenerated file.
#
# All configuration values have a default; values that are commented out
# serve to show the default.
# Copyright (c) 2016-2018 Braintech Sp. z o.o. [Ltd.] <http://www.braintech.pl>
# All rights reserved.
import
sys
import
os
...
...
matlab/src/DataSource.m
View file @
eaf9a598
% Copyright (c) 2016-2018 Braintech Sp. z o.o. [Ltd.] <http://www.braintech.pl>
% All rights reserved.
classdef
DataSource
<
handle
%DATASOURCE Provides sample data
% retuns sample in matrix. Rows are channels, columns are samples
...
...
matlab/src/FileDataSource.m
View file @
eaf9a598
% Copyright (c) 2016-2018 Braintech Sp. z o.o. [Ltd.] <http://www.braintech.pl>
% All rights reserved.
classdef
FileDataSource
<
DataSource
%FileDataSource Reads data from give file
...
...
matlab/src/FileInfoSource.m
View file @
eaf9a598
% Copyright (c) 2016-2018 Braintech Sp. z o.o. [Ltd.] <http://www.braintech.pl>
% All rights reserved.
class
FileInfoSource
properties
filename
...
...
matlab/src/InfoSource.m
View file @
eaf9a598
% Copyright (c) 2016-2018 Braintech Sp. z o.o. [Ltd.] <http://www.braintech.pl>
% All rights reserved.
classdef
InfoSource
<
handle
%INFOSOURCE Class for reading and writing data params
% Detailed explanation goes here
...
...
matlab/src/MemoryDataSource.m
View file @
eaf9a598
% Copyright (c) 2016-2018 Braintech Sp. z o.o. [Ltd.] <http://www.braintech.pl>
% All rights reserved.
classdef
MemoryDataSource
<
DataSource
%UNTITLED12 Summary of this class goes here
% Detailed explanation goes here
...
...
matlab/src/ReadManager.m
View file @
eaf9a598
% Copyright (c) 2016-2018 Braintech Sp. z o.o. [Ltd.] <http://www.braintech.pl>
% All rights reserved.
classdef
ReadManager
<
handle
%READMANAGER Class for reading and writing channel data, tags and data
%params
...
...
matlab/src/SmartTag.m
View file @
eaf9a598
% Copyright (c) 2016-2018 Braintech Sp. z o.o. [Ltd.] <http://www.braintech.pl>
% All rights reserved.
classdef
SmartTag
<
ReadManager
%SmartTag It is ReadManager with some context.
% It can by used to get some parts of the signal.
...
...
matlab/src/SmartTagDefinition.m
View file @
eaf9a598
% Copyright (c) 2016-2018 Braintech Sp. z o.o. [Ltd.] <http://www.braintech.pl>
% All rights reserved.
classdef
SmartTagDefinition
%SmartTagDefinition is used to create SmartTags, with given parameters
...
...
matlab/src/SmartTagDuration.m
View file @
eaf9a598
% Copyright (c) 2016-2018 Braintech Sp. z o.o. [Ltd.] <http://www.braintech.pl>
% All rights reserved.
classdef
SmartTagDuration
<
SmartTag
%SmartTagDuration created by SmartTagDurationDefinition
% see help SmartTagDurationDefinition
...
...
matlab/src/SmartTagDurationDefinition.m
View file @
eaf9a598
% Copyright (c) 2016-2018 Braintech Sp. z o.o. [Ltd.] <http://www.braintech.pl>
% All rights reserved.
classdef
SmartTagDurationDefinition
<
SmartTagDefinition
%SmartTagDurationDefinition Get Smart tags with given duration
% The class is to be used for following requirement:
...
...
matlab/src/SmartTagEndTag.m
View file @
eaf9a598
% Copyright (c) 2016-2018 Braintech Sp. z o.o. [Ltd.] <http://www.braintech.pl>
% All rights reserved.
classdef
SmartTagEndTag
<
SmartTag
%SmartTagEndTag created by SmartTagEndTagDefinition
% see help SmartTagEndTagDefinition
...
...
matlab/src/SmartTagEndTagDefinition.m
View file @
eaf9a598
% Copyright (c) 2016-2018 Braintech Sp. z o.o. [Ltd.] <http://www.braintech.pl>
% All rights reserved.
classdef
SmartTagEndTagDefinition
<
SmartTagDefinition
%SmartTafEndTagDefinition Definition of tags, which are ended with
%certain type of tag.
...
...
matlab/src/SmartTagsManager.m
View file @
eaf9a598
% Copyright (c) 2016-2018 Braintech Sp. z o.o. [Ltd.] <http://www.braintech.pl>
% All rights reserved.
classdef
SmartTagsManager
<
handle
%SMARTTAGSMANAGER Creates SmartTags from given SmartTagDefinitions
...
...
matlab/src/Tag.m
View file @
eaf9a598
% Copyright (c) 2016-2018 Braintech Sp. z o.o. [Ltd.] <http://www.braintech.pl>
% All rights reserved.
classdef
Tag
%TAG Value class represents one Tag
...
...
matlab/src/TagsSource.m
View file @
eaf9a598
% Copyright (c) 2016-2018 Braintech Sp. z o.o. [Ltd.] <http://www.braintech.pl>
% All rights reserved.
classdef
TagsSource
<
handle
%TagsSource Object which can read and write tags from file
% It is used by ReadManager and SmarTags
...
...
matlab/src/TestTags.m
View file @
eaf9a598
% Copyright (c) 2016-2018 Braintech Sp. z o.o. [Ltd.] <http://www.braintech.pl>
% All rights reserved.
samples
=
[
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
;
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
;
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
];
is
=
InfoSource
();
is
.
set_param
(
'number_of_channels'
,
num2str
(
3
));
...
...
obci_readmanager/__init__.py
View file @
eaf9a598
# -*- coding: utf-8 -*-
# Copyright (c) 2016-2018 Braintech Sp. z o.o. [Ltd.] <http://www.braintech.pl>
# All rights reserved.
from
._version
import
get_versions
__version__
=
get_versions
()[
'version'
]
...
...
obci_readmanager/debug.py
View file @
eaf9a598
# -*- coding: utf-8 -*-
# Copyright (c) 2016-2018 Braintech Sp. z o.o. [Ltd.] <http://www.braintech.pl>
# All rights reserved.
"""Recommended tools for OpenBCI debugging.
* PyCharm
...
...
obci_readmanager/signal_processing/__init__.py
View file @
eaf9a598
# -*- coding: utf-8 -*-
# Copyright (c) 2016-2018 Braintech Sp. z o.o. [Ltd.] <http://www.braintech.pl>
# All rights reserved.
"""Package providing utils for utils for reading and writing signal data,and data info and data taga, and blinks."""
Prev
1
2
3
4
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment