Remork where nuromantix managed to drive a display from pd, but the link to the pd patch in response #10 is dead.
the final result of that was this: https://blog.bela.io/2018/03/27/opal-rhythm-computor-dmx-krew/
Look at what @crosswick and @RafaeleAndrade have been doing: https://forum.bela.io/d/314-is-anyone-successfully-using-i2c-oled-lcd/73.
Basically you could use https://github.com/giuliomoro/OSC2OLED4Bela stand alone program which gets OSC inputs and outputs it to an OLED display. This is a Bela project, but doesn't actually do any audio rendering,
so you can have it running alongside the your Bela-Pd program, which would then send the OSC to the other one.
Makes sense?
Otherwise, and for reference, the canonical way of making this work as a "single" Bela-Pd project is:
- find a C/C++ Linux library for your display of choice
- test it on Bela following the author's recommendations and ensure it works
- integrate it in a custom libpd render.cpp file (see https://github.com/BelaPlatform/Bela/wiki/Puredata-and-C--#combining-c-and-pd)