Questions tagged [mindwave]

10 questions
1
vote
1 answer

Neuropy library TypeError: __init__() missing 1 required positional argument: 'port'

I'm using neurosky mindwave kit, so I downloaded Neuropy library to obtain the kit's readings, I tried a sample code: from NeuroPy.NeuroPy import NeuroPy from time import sleep neuropy = NeuroPy() def attention_callback(attention_value): …
1
vote
0 answers

How can I use a variable from another script in c# in unity3d?

I want to make a visualizer that shows the meditation value from the Neurosky mindwave. It is a project for my university class (in Communication Design), so I'm quite new to code. I want to work with the VFX Graph for the visualization and I made a…
Saskia
  • 11
  • 2
1
vote
1 answer

multiple HTML5 canvas with Neurosky sensor input is not working

I have created multiple html5 canvas using instantiation mode in P5JS. I am using Neurosky mindwave EEG sensor to activate and deactivate canvas one by one. Neurosky mindwave EEG sensor can detect user's eye blink which I am using as input. When…
B L Λ C K
  • 600
  • 1
  • 8
  • 24
1
vote
1 answer

No module named pymindwave

I have installed pymindwave in the following directory: C:\Python27\Lib\site-packages However when I run another code which depends on it it says it can't find pymindwave. What's the solution? Here's the first few lines of the code that gives the…
Mona Jalal
  • 34,860
  • 64
  • 239
  • 408
0
votes
1 answer

Mindwave connection using NeuroPy library

I am trying to connect a Mindwave (NOT Mindwave Mobile) headset to my raspberry pi4 in order to complete my MSc project. I am struggling to get it to consistently report the attention setting and have recently found out that - despite all…
Andy
  • 3
  • 2
0
votes
1 answer

Using NeuroSky's Mindwave Mobile(to measure brainwave) and Raspberry 3 to do FFT(to get certain frequency) with Python 2.7

I'm using NeuroSky's Mindwave Mobile and Raspberry 3 to do FFT with Python 2.7. Presently, I got raw data which is sampled brainwave data. We can get raw data at 512 per sec. That means, Sampling Frequency is 512Hz, but I don't know what to do. I…
linuxman
  • 1
  • 2
0
votes
1 answer

How to access these dictionary values? (Swift)

I have a file called eegsnapshot.swift which reads values from an EEG Sensor and stores them in a dictionary (I think?). I am having trouble trying to access these values. I am new to Swift and have done some work with Arrays and Dictionaries but…
ChloeS
  • 3
  • 3
0
votes
0 answers

Accessing Objective C NSDictionary Values in Swift

I am working on a project using Neurosky MindWave to create an IOS app. I am using the ThinkGear SDK for IOS available here: http://developer.neurosky.com/docs/doku.php?id=beta The project reads values from the MindWave device and stores them in a…
ChloeS
  • 3
  • 3
0
votes
0 answers

serial port for MindWave in Windows8.1

How can I find what is the serial port assigned to the MindWave USB in Windows8.1? The code I am using has this for Mac OSX: import platform import sys, time from mindwave import bluetooth_headset import httplib, urllib, urllib2 import…
Mona Jalal
  • 34,860
  • 64
  • 239
  • 408
-1
votes
1 answer

How to call a java program automatically using a python script?

I am working on a research project that involves dealing with an EEG headset Device. The functional code and logic for the device (Mindwave Neursky EEG Headset) is completely documented in java so I have coded the whole project in java and the GUI…