Core Training Methods

List of primary training methods available in the Training Handler class

Parameter
Description

action

Name of the target action, must be in the set specific by detection info. Use MentalCommandNames for simplicity

Start

Initiate a training sample.

-> Training Started

void Start(string action);

Accept

Accept a successful training sample.

-> Training Completed

void Accept(string action);

Reject

Reject a successful training sample.

-> Training Rejected

void Reject(string action);

Cancel

Cancel an in progress sample.

-> Training Cancelled

void Cancel(string action)

Erase

Erase all training data for this action.

-> Data Erased

void Erase(string action);

Save Profile

Save the training progress of this headset to the profile. If the profile is the one currently loaded to the headset, the profile is saved. If no profile with the given name exists, a new profile is created.

-> Profile Saved

void SaveProfile(string profileName, string headsetId);

Last updated