FergusL

Results 27 comments of FergusL

Just randomly found another solution for that using a table: ```c++ static ImGuiTableFlags flags = ImGuiTableFlags_Borders | ImGuiTableFlags_NoHostExtendX | ImGuiTableFlags_SizingFixedFit; ImGui::PushStyleVar(ImGuiStyleVar_CellPadding, ImVec2(10.0f, 10.0f)); if (ImGui::BeginTable("table1", 2, flags)) { ImGui::TableNextRow(); ImU32...

@skyisthela said: > i gave that "advice" because i don't know how code works. if i knew i wouldn't be making my initial comment and neither would you. your issue...

Hi @turian! Have you found a solution in the meantime? A few things that could be checked: - I note you're using `make -f Make.llvm.static` manually, any reason for that?...

I am using 512: https://github.com/Simon-L/mpdmx/blob/main/mpdmx_1/mpdmx_1.ino#L73 I did some more tests today and I might still have an off-by-one error, that has to be on my end though. In the meantime...

Don't know if that's related or not but I needed to install `pycairo` with `pip install pycairo` and then follow `python setup.py install` as per the readme. Otherwise the install...

I have made some more experiments with this package. Indeed it seems the software is crashing and the container restarts repeatedly, sometimes after running for 3 minutes, sometimes after 20...

Totally agree as well! If I may, I'd like to recommend Flarum for the task (http://flarum.org/) which is used for the Bela forums: https://forum.bela.io/ Discourse also seems cool, like the...

Usages include: - Syncing to host tempo - Sequencing according to "musical position" The call should be `AudioEffectX::getTimeInfo()` and returns a `VstTimeInfo` object. For reference, as the VST documentation isn't...

I'm not sure I understand, are you talking about VST or C targets? Do you mean that the context already has receivers for [notein] and [ctlin] by default? I started...

@diplojocus Thanks for the explanation! Funnily my code does something very similar. I have also made an implementation of [notein] as an additionnal patch with a [receive] object that I...