Search results

  1. D

    teensy and puredata. Too much bangs

    here is my code, for now it's non working, but in puredata the [ctlin] object is flickering between 14 and 15 and always at 127... I have edited my reply as I found my errors, using rose() == 1 instead of fell() == 0 changed everything :)
  2. D

    teensy and puredata. Too much bangs

    I am using only the Bounce2.h library, maybe it is the flaulty one?
  3. D

    teensy and puredata. Too much bangs

    Hi to everybody I have made a usb midi to what-I-need translator with the teensyduino as a midi device Noaw I want to add two switches to control two parameters in puredata. I have my code working : if (value1 == LOW){ digitalWrite (lb1, HIGH); usbMIDI.sendControlChange(14, 127, 1); } if...
  4. D

    teensyduino midi sync

    I am talking about the previous code, I haven't tried this one but I will soon
  5. D

    teensyduino midi sync

    Thanks a lot. I don't know why I didn't try this one. I tried quite a lot of codes. Anyways, it worked. I can sync devices. Now I guess I need to learn more about the midi protocol. I need to control a sampler and the clock is the only thing that works for now, it's fantastic, but the...
  6. D

    teensyduino midi sync

    I have read some documentation about the midi libraries but I don't understand everything. Anyways, I need the usbMidi library because I need to communicate with my computer. I would like to be able to send or receive the midi clock from the computer to hardware and in the other way. It would be...
  7. D

    teensyduino midi sync

    here is the best code I had, maybe it's not much for you but for me it's already enough trouble.... #define ledPin 13 byte midi_clock = 0xF8; byte midi_start = 0xFA; byte data; void OnNoteOn(byte channel, byte note, byte velocity) { digitalWrite(ledPin, HIGH); } void OnNoteOff(byte...
  8. D

    teensyduino midi sync

    I have tried to send the 248 number with : (...) Serial2.begin(31250); (...) void loop(){ Serial2.write(248); } (...) but it doesn't work. I have a square wave on the oscilloscope out of the serial port but it seems that it's not the expected midi clock...
  9. D

    teensyduino midi sync

    Ok, so I have managed to make it work with midi notes over usb. Apparently the usbmidi library of the teensy doesn't handle the midi clock. I have a code that make the led and another pin blink from a midi note sequence. How could I send to one of the serial outputs the midi clock signal? Can I...
  10. D

    teensyduino midi sync

    I have tryed a lot of codes, one that worked and other that didn't. I can't continue for today but I'll keep going tomorrow and keep you informed
  11. D

    teensyduino midi sync

    I can live with only one midi out diplicated. For now I am just trying to blink an led. I managed to do it from the usbmidi setting the teensy as an usb device but I can't do it from the rx pin connected to the midi input. I was wondering how hard it would be to do it without the midi libraries...
  12. D

    teensyduino midi sync

    I want to send the midi clock to the ouputs and to the usb midi connexion. Maybe if that works, I could add a switch to change if the clock come from usb or midi din input.
  13. D

    teensyduino midi sync

    I would like to do this :
  14. D

    teensyduino midi sync

    Ok, I am not understanding the code... I don't know what do what... I keep on looking for a solution to transmit the clock from midi din to midi usb and in the other way...
  15. D

    teensyduino midi sync

    thanks I'll try that tomorrow.
  16. D

    teensyduino midi sync

    I have a syncing device project for midi and gates, I have achieved thanks to little scale to sync the gate of my synth but now I would like to sync a midi device too and I am really not confortable with midi. Does anyone know a way or where I could investigate to be able to transmit the midi...
  17. D

    Audio Adaptor Board to manipulate cv signal

    hi, thanks for the answer. I am looking after a little bit of both. I was (and still am) planning to do something using the teensy ADC to convert CV signals (0-5v). Something over 12 bits is enough for me and the teensy 3.1 adc seems to be above 12 bits. When I found the audio board I just...
  18. D

    Audio Adaptor Board to manipulate cv signal

    Hello to all. I would like to build a synthetiser module with a teensy brain. I was looking for informations about high definition DAC and ADC and I came across the Audio Adaptor Board. I saw the schematics and I was wondering if someone know if it would be possible to bypass the 1uF input...
Back
Top