me.thomas_windt.thinkgearconnector.json.RawPacket Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thinkgearconnector Show documentation
Show all versions of thinkgearconnector Show documentation
This API allowes you to use the MindWaveMobile EEG headset by NeuroSky with the ThinkGearConnector bridge for Windows/Mac or access it directly via bluetooth. You can also use a hacked MindFlex game with an arduino to gather data.
The newest version!
package me.thomas_windt.thinkgearconnector.json;
import java.util.HashMap;
/**
* Created by root on 19.05.2017.
*/
public class RawPacket implements Packet {
private int rawEeg;
public int getRawEeg() {
return rawEeg;
}
@Override
public HashMap toHashMap() {
HashMap map = new HashMap<>();
map.put("rawEeg",this.rawEeg);
return map;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy