MindSetUWP 1.0.5

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package MindSetUWP --version 1.0.5
NuGet\Install-Package MindSetUWP -Version 1.0.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MindSetUWP" Version="1.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MindSetUWP --version 1.0.5
#r "nuget: MindSetUWP, 1.0.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install MindSetUWP as a Cake Addin
#addin nuget:?package=MindSetUWP&version=1.0.5

// Install MindSetUWP as a Cake Tool
#tool nuget:?package=MindSetUWP&version=1.0.5

+ Realtime EEG monitoring with three lines of code !
+ Integrated EEG activity recording.

https://olirehacek.github.io/MindSetUWP/

MindWaveUWP makes your universal Windows apps smarter and helps them to read user brainwave data using Bluetooth EEG headset MindWave Mobile EEG headset. The library is specifically designed to be very easy, fast and deployable with minimal alterations of your already working code. With only 2 extra lines of code your application can be ready to recieve and process user brainwave data. The library does not work only with real-time EEG readings, but also provides built-in data recording for long-term data analysis.
ibrary can be used for any .NET Windows 10 Universal application running on every Windows 10 device that have a bluetooth adapter installed with appropriate system drivers. The EEG headset must be paired in the system Bluettooth menu prior to the use of the library itself.

==================================================
QUICK START GUIDE:
==================================================

PLEASE CHECK IN APPXMANIFEST IF YOUR APPLICATION HAVE BLUETOOTH CAPABILITY CHECKED !
First, we create an instance of MindSetConnection.

private MindSetConnection MyHeadset = new MindSetConnection()

After the MindSetConnection is created, we can directly proceed with connecting to EEG headset. We supply "ConnectBluetooth" method with the name of the bluetooth headset in string format. Please note, that this headset must be already paired with your Windows device.

MyHeadset.ConnectBluetooth("MindWave Mobile");

That's all, Sparky! We are all set and already receiving data from the headset. From now on, we can access all of the realtime reading directly from our instance of MindSetConnection just like any other integer variable:

Debug.Write(MyHeadset.RealtimeData.AlphaHigh);
Debug.Write(MyHeadset.RealtimeData.Beta);

It does not stop there, because MindSetUWP library features much more. To learn all of the possibilities of the library from basic connecting, understanding EEG data to recording, events and exception manipulation. You can download the full LaTeX documentation Here.
====================================

Product Compatible and additional computed target framework versions.
Universal Windows Platform uap was computed.  uap10.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated


========================================
READ THE FULL DOCUMENTATION HERE: https://github.com/olirehacek/MindSetUWP/blob/master/MindSetUWP_Documentation.pdf
========================================

Stability improvements
NuGet package now fixed