| 875 | } |
| 876 | |
| 877 | void NeuralPiAudioProcessorEditor::connectSender() |
| 878 | { |
| 879 | // specify here where to send OSC messages to: host URL and UDP port number |
| 880 | if (!oscSender.connect(outgoingIP, outgoingPort)) |
| 881 | { |
| 882 | updateOutConnectedLabel(false); |
| 883 | } |
| 884 | else |
| 885 | { |
| 886 | updateOutConnectedLabel(true); |
| 887 | } |
| 888 | } |
| 889 | |
| 890 | void NeuralPiAudioProcessorEditor::updateOutgoingIP(String ip) |
| 891 | { |
nothing calls this directly
no outgoing calls
no test coverage detected