Pieter P

Results 491 comments of Pieter P

This sounds like a problem with your DAW. Try the `USBDebugMIDI_Interface` to make sure that it's not an Arduino problem: send `90 10 7F` `90 11 7F` and the first...

> I see numbers between 0 - 160000 (or something like that) The range sent by Control Surface is [0, 16,368]. (16,368 = (210 ─ 1) × 24) This is...

> Do you imagine what could be happening? One possible reason could be that the hardware DAW doesn't have a working USB driver for the Teensy 2.0. Can you test...

> I will try to test tonight. I need to download and include another library, and delete "include ", or just update my code under "void loop" with your sketch?...

> How could i know if test work correctly? I have just see if compile without erros? It sends the same 14-bit control change messages as in your screenshots, but...

There are no actual variables in the MIDI protocol itself, only in the software that sends or receives MIDI. The MIDI messages themselves just consist of 3 numbers (at least...

> In case it's a teensy communication problem. Do you think it might have something to do with TEENSY 2.0's midi over usb implementation, which might not be fully functional?...

Thanks for letting me know! This issue seems to be caused by the addition of new fields in the `esp_pthread_cfg_t` struct in newer versions of the ESP-IDF and the ESP32...

I'm not a PlatformIO user myself, but it looks like it's trying to build the MIDIUSB library, which shouldn't be necessary for ESP32. I'm not sure what causes this, it...

Adding `lib_ignore = MIDIUSB` to your `platformio.ini` file should get around this issue for now. I'll see if I can fix this more permanently in the `library.json` file of the...