In [1]:
import libeeg
In [57]:
rec = libeeg.EEGRecorder('recordings/youtube.h5')
In [58]:
rec.start()
In [59]:
rec.is_recording()
Out[59]:
In [29]:
rec.tag('smile')
In [30]:
rec.neutral()
In [31]:
rec.tag('blinking')
In [32]:
rec.neutral()
In [33]:
rec.tag('eyes_left')
In [34]:
rec.neutral()
In [35]:
rec.tag('eyes_right')
In [36]:
rec.neutral()
In [37]:
rec.tag('eyes_closed')
In [38]:
rec.tag('eyes_open')
In [39]:
rec.neutral()
In [40]:
rec.tag('eyes_up')
In [41]:
rec.tag('eyes_down')
In [ ]:
rec.neutral()
In [42]:
rec.stop()
In [46]:
rec.tag('head_left')
In [47]:
rec.tag('head_right')
In [48]:
rec.tag('head_up')
In [49]:
rec.tag('head_down')
In [50]:
rec.neutral()
In [51]:
rec.tag('brows_up')
In [54]:
rec.neutral()
In [53]:
rec.tag('frown')
In [55]:
rec.stop()
In [56]:
rec.is_recording()
Out[56]:
In [60]:
rec.tag('song')
In [61]:
rec.tag('song_eyes_closed')
In [62]:
rec.neutral()
In [63]:
rec.stop()
In [ ]: