run this program on the board:
#include <Bela.h>
#include <libraries/OscSender/OscSender.h>
OscSender oscSender;
int remotePort = 7001;
const char* remoteIp = "192.168.6.1";
bool setup(BelaContext *context, void *userData)
{
oscSender.setup(remotePort, remoteIp);
return true;
}
void render(BelaContext *context, void *userData)
{
static int count = 0;
if(count++ % 1000 == 0) {
rt_printf("sending %d\n", count);
oscSender.newMessage("/osc-from-bela").add(count).send();
}
}
void cleanup(BelaContext *context, void *userData)
{}
and see if you receive anything. If you don't, use PureData on your host with this simple patch and see if you get what you should:
