A couple of definitions for those who aren’t familiar with these terms:
Test Driven Development: (TDD) Is the practice in Software Engineering of writing the tests before the code itself for a particular feature. This helps simplifying the problem to solve while you build your solution incrementally.
Brain Computer Interface: (BCI) An interface that reads activity from your brain in order to communicate with a computer without using devices like keyboard or mouse.
Neuralink is the company most famous trying to achieve a good BCI. The primary focus will be helping those patients with cervical injuries. A known approach is using a bidirectional BCI, which will read activity from the brain while also stimulating the sensory cortex, closing the loop and helping bypassing the nerve injury.
But can we use BCI? I want it now 😩
There are some options out there that you can play around with. OpenBCI is a popular one. Other more commercials are Mindwave or Emotiv.
If you feel adventurous you can build your own following instructions at OpenEEG. Be careful with the risks:
However, if there is an isolation failure in the EEG unit due to an accident, or faulty design, or faulty parts, or faulty construction, and the EEG subject touches a live mains voltage in their environment, the mains voltage will take the shortest route to earth, which is through the subject’s body. This electric shock passing through the head is likely to have severe consequences.
I ended up picking a device from Mindwave, since I didn’t have much time for playing around it wouldn’t make sense investing in a more expensive device.
For a quick demonstration what I wanted to achieve is to execute tests each time I had 2 blinks. Technically I’m not using the electrical activity from the brain, but from the muscles in the eye in charge of performing a blink. But the idea is the same. I’m giving an order from my brain to execute a command in my computer, which is faster than using a shortcut with the keyboard or using the mouse.
After researching a bit on how to connect to the device I’ve found is not that complicated using JavaScript. Once you have the ThinkGearConnector running with the logging option enabled you will be able to interact with the device:
After you should provide some configuration options, like app name, format etc.
Then you should be ready for listening the data from the Mindwave device. Normally you will get values for your meditation/attention current state as well as values for each type of your brain waves:
You can get those with the following code:
Now for our demo project, I want to detect 2 blinks in a row. Luckily, the device
tell us when a blink is detected with its detected blink strength. This is good for tuning out
accidental blinks. You will receive a property in the JSON called blinkStrength
with its corresponding
value.
So with the following code we can detect when 2 blinks are detected and execute a command of our choice. In this case we will run tests with Jest.
I recorded a video so you can see it in action:
Obviously, I won’t use this while I’m coding, the device is not that comfortable, but will see in the future :)
If you want to see the code you can find it in Github.