File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments