Search results

  1. E

    Teensy 4.1 solder pads for USB ...

    Thanks for your reply, I managed to get it work by soldering the wires perpendicularly to the teensy. With the wires standing flat, it doesn't work... kind regards
  2. E

    Teensy 4.1 solder pads for USB ...

    usb cable soldered to pads makes teensy 4.1 disappear Hi there, I recently upgraded from 3.6 to 4.1 for a project.. I can't manage to see the 4.1 with an usb cable soldered to pads. Even the normal usb connector stops working when I solder some D+ D- wires to the soldering pads. Do you have any...
  3. E

    Receive MIDI via USB Host Pads?

    I'm trying to do exactly this! hosting my lounchpad pro with a teensy 3.6. the LP turn on, leds blinking all around, but I can't get out of the christmas tree mode. I tryed to send a sysex msg 240 0 32 41 2 16 44 3 247 to enter programmer mode but nothing happens... Paul, have you managed to do...
  4. E

    Dedicated controller for soft synth that also reflects current settings

    this is a great project and reaper is the best daw ever... would you recommend using midi MCU emulation or OSC for a similar controller? thanks!
  5. E

    Dedicated controller for soft synth that also reflects current settings

    it would be great to decide how the fx parameters are mapped to the various encoders ;-)
  6. E

    PoE powered OSC controller for Reaper DAW

    This is an amazing project and a nice piece of code! it's gone help me a lot!
  7. E

    Parsing problem with strtok - teensy 3.2

    hello, thanks for your reply, I thought that I have to strdup to store the tokens somewhere cause my p is modified each iteration... but I'm completely a beginner in C, I'll give it a try! [edit]: I want to display the substrings to different oled displays so I can't delete them... should I...
  8. E

    Parsing problem with strtok - teensy 3.2

    This is less elegant but it works: if (Serial.available() > 0) { String s1 = Serial.readStringUntil(' '); Serial.read(); String s2 = Serial.readStringUntil(' '); Serial.read(); String s3 = Serial.readStringUntil(' '); Serial.read(); String s4 =...
  9. E

    Parsing problem with strtok - teensy 3.2

    Dear people, I'm struggling with a parsing problem, actually I'm sending strings through the serial usb (each 100ms), it works fine for a while (1 minute or so) and then suddently it stops. I've tried everything that came to my mind without success... Here's a simplified code: void...
Back
Top