IN FEW DAYS I WILL UPLOAD COMPLETELY PROJECT ON MY ANOTHER
PROFILE xdeyyan hackster.io/xdeyyan DATE OF UPLOAD : 20.04.2018 CET (European Time, Balkans)
Emotion Sensor / EEGTHANK YOU FOR ALL THE COMMENTS FROM DOWN BELOW!
PROJECT EDITED : 08.04.2018 / 15:56 CET TIME
It's designed to detect a person's emotions and for use as an EEG.
This project isn't finished. I will upload the finished project later, now let's talk about it.
Project uses:
- Quod 4 - Processor (14€)
- Quod Z6 - Controller (3€)
- Raspberry Pi (optional / it's used to detect emotions, if you want only the EEG, you can do it without Raspberry Pi)
- Wires
- Switches
- 9V battery connector
- 9V battery
Code for reading brain waves:
// This is script for reading brain waves
// Developed by Dejan Lukić from Quod
implements {
use [RaspberryPI]
use [VisualStudio.code]
use [Qoud4.processor]
use [QoudZ6.controller]
}
code {
if 'startup' [run = 'Quod Controller.exe']
if 'shutdown' [terminate = 'Quod Controller.exe']
if 'hibernate' [screen.blank]
if 'err' [screen.err]
public function 'readBrainWaves' [
if 'brainWave' = 1 [positive.signal]
if 'brainWave' = 0 [negative.signal]
if positive.signal [analytics.pointer.high]
if negative.signal [analytics.pointer.low]
if positive.signal + negative.signal [analytics.pointer.medium + beep.sound]
if 'brainWave' = over 1 [shutdown = 'RaspberryPI' + shutdown = 'QuodZ6.controller']
other [startup = 'RaspberryPI' + startup = 'QuodZ6.controller']
]
}
Now, let's make Visual Studio code. We need software for graphical interface.
Like this:
This is example of project, I will finish it in the near future.
Comments