UNPKG

emotiv-ts

Version:

A Typescript library that wraps the Cortex API functionalities to communicate with Emotiv headsets

13 lines (12 loc) 528 B
/** * This enumeration holds the Emotiv training commands. * These are used for performing different actions on training using the Cortex API, i.e. start a new training, cancel the current training, etc. */ export var TrainingCommands; (function (TrainingCommands) { TrainingCommands["START"] = "start"; TrainingCommands["ACCEPT"] = "accept"; TrainingCommands["REJECT"] = "reject"; TrainingCommands["RESET"] = "reset"; TrainingCommands["ERASE"] = "erase"; })(TrainingCommands || (TrainingCommands = {}));