I have some issues with sending MIDI to my PBF4 ever since updating my macOS version. There is a Processing sketch that sends values for the LEDs corresponding to their addresses. I can see that the correct messages are still being correctly sent from the sketch via MIDI monitor, but they stopped triggering the LED changing on the controller, so the issue must be on the receiving end.
This is the MIDI rx script that changes the LEDs:
if param1 >= 8 and param1 < 12 then
element[param1].p = param2
led_value(param1, 1, param2)
else
element[param1 - 4].lp = param2
if param2 > 0 then
led_color(param1 - 4, 1, 0, led_default_green(), 0, 0)
else
led_color(param1 - 4, 1, led_default_red(), led_default_green(), led_default_blue())
end
end
I did not change anything about the setup since it was last working in the summer, except for updating my macOS version from Sequioa to Tahoe. I did not update the firmware or Grid Editor, or even open the Grid Editor since loading my working configs on it. (Edit: I did in fact upgrade the Grid Editor, which was the culprit, not the macOS update)
I went to investigate in the Grid Editor (1.5.7), which wasn’t even properly readable anymore on this macOS version due to UI issues (black on grey text?). I figured to update to the latest (now ‘grid-editor’), which of course also prompted me to update the PBF4’s firmware. But if I hold the utility button while plugging in, it does not seem to start the bootloader mode. The grid-editor does not prompt an update and the controller’s LEDs just go to a constant green.
Resetting the controller manually via pressing the utility button shortly after plugging the cable in does not reset it either, it just prompts a page change (as I have it configured to do).
What do I do? I have a show on monday and wasn’t expecting something like receiving MIDI to break when I update my OS. The thing is that the setup still works sending the correct MIDI messages from the controller to my Processing application, but not having updated LED values defeats the purpose of the controller. I have my configs saved in your cloud, so I thought updating the Grid Editor and Firmware might fix the issue on macOS 26.3, but I also don’t want to risk not even being able to use MIDI send anymore.
Are there any known issues with MIDI rx or the grid-editor automatic firmware updates for newer macOS versions?

