Hello,

I would like to send some numbers from my C++ code to PureData.

I did some sensor data manipulation in C++ that was difficult to do to in Pd, but now I'm having some challenge trying to do some sound design in C++.

Is there a simple method to accomplish this? I only need to send the data from C++ to Pd but not back and forth. Pd will take care of the audio.

Thank you!

See here for an answer that is longer than what you need. Here's an extract with only the details you need:

for all these things you will need a custom render.cpp.
The big picture is here: https://github.com/BelaPlatform/Bela/wiki/Puredata-and-C--

In practice you need to:

  • start from the base default render file: cp core/default_libpd_render.cpp project/yourpdproject/render.cpp
  • make your edits in there. This involves:
    • if you want to send a message to Pd (e.g.: when your sensor data is ready), use libpd_float() (see here)

Thank you for the reply.

Sorry, I just started using the IDE this week, so I'm still having difficulty putting these things together.

Do I make a C++ project and then upload a .pd file? I'm having a hard time understanding this part "start from the base default render file: cp core/default_libpd_render.cpp project/yourpdproject/render.cpp ". Do I need two cpp files or do I only need a render.cpp and a pd file if I'm only communicating one way?

This seems like what I need "int libpd_float(const char *destination, float value) " but I'm not sure where to exactly put it in the render.cpp file. Will it look something like libpd_float("foo", 0.5) and I'll have (s foo) in pd? But I'm still not sure where to put that function and if there are lines of code that I need to setup/initialize the communication.

If there a simple project template for C++ -> Pd communication somewhere, I would greatly appreciate if you could direct me to that.

Again, thank you so much for the help.

    togata : cp core/default_libpd_render.cpp project/yourpdproject/render.cpp

    The file default_libpd_render.cpp is the default file that is used for Pd projects. This is unless there is a .cpp file in the project itself, in which case the latter is used. The line above copies the default file to your project (assuming your project is called yourpdproject: adjust the line accordingly). Once that happens, you can edit the newly created render.cpp file in your folder, scroll down to the render() function, where you will add your custom C++ code, and send the result to Pd with libpd_float("foo", 0.5). In Pd, you will have [receive foo], and the floats you send from C++ will come out of this.

    There is an example in 08-PureData/customRender that exemplifies some changes to the default .cpp file and communication back and forth with Pd, however the instructions I gave above should be enough.