Skip to content

Commit 073205d

Browse files
committed
Remove mention of Ganglion in [ and ] keys in Interactivity.pde
1 parent 3f9f6d6 commit 073205d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

OpenBCI_GUI/Interactivity.pde

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,12 +213,12 @@ void parseKey(char val) {
213213
// Fixes #976. These keyboard shortcuts enable synthetic square waves on Ganglion and Cyton
214214
if (currentBoard instanceof BoardGanglion || currentBoard instanceof BoardCyton) {
215215
if (val == '[' || val == ']') {
216-
println("Expert Mode: '" + val + "' pressed. Sending to Ganglion...");
216+
println("Expert Mode: '" + val + "' pressed. Sending to board...");
217217
Boolean success = ((Board)currentBoard).sendCommand(str(val)).getKey();
218218
if (success) {
219-
outputSuccess("Expert Mode: Success sending '" + val + "' to Ganglion!");
219+
outputSuccess("Expert Mode: Success sending '" + val + "' to board!");
220220
} else {
221-
outputWarn("Expert Mode: Error sending '" + val + "' to Ganglion. Try again with data stream stopped.");
221+
outputWarn("Expert Mode: Error sending '" + val + "' to board. Try again with data stream stopped.");
222222
}
223223
return;
224224
}

0 commit comments

Comments
 (0)