(streamerParams: string, preset = BrainFlowPresets.DEFAULT_PRESET)
| 247 | } |
| 248 | |
| 249 | public deleteStreamer(streamerParams: string, preset = BrainFlowPresets.DEFAULT_PRESET): void |
| 250 | { |
| 251 | const res = BoardControllerDLL.getInstance().deleteStreamer( |
| 252 | streamerParams, preset, this.boardId, this.inputJson); |
| 253 | if (res !== BrainFlowExitCodes.STATUS_OK) |
| 254 | { |
| 255 | throw new BrainFlowError (res, 'Could not delete streamer'); |
| 256 | } |
| 257 | } |
| 258 | |
| 259 | public insertMarker(value: number, preset = BrainFlowPresets.DEFAULT_PRESET): void |
| 260 | { |
nothing calls this directly
no test coverage detected