Forum Rule: Always post complete source code & details to reproduce any issue!

Search:

Type: Posts; User: toutant

Page 1 of 2 1 2

Search: Search took 0.00 seconds.

  1. Replies
    2
    Views
    375

    Thanks, Pensive. Not hijacking at all! I...

    Thanks, Pensive. Not hijacking at all!

    I should mention that I'm located in the states. :)
  2. Replies
    2
    Views
    375

    Extra Teensy 4.1s if anyone needs them

    Hey folks.

    I have 10 brand new Teensy 4.1s (no headers) that I'm not going to use. (I ordered them several months ago for a product, and then started designing a DIY teensy layout instead.) I...
  3. Replies
    2
    Views
    423

    Thanks, Mark! And congratulations on the...

    Thanks, Mark! And congratulations on the MIDIPoly. It's a really cool project that I've borrowed from a few times :).

    That's good to know. I've read that higher values might case extra noise,...
  4. Replies
    2
    Views
    423

    Various pot values for analog read

    Hi all,

    I'm working on a Teensy synth, and I just realized that the slide potentiometers that I want to use are not available in 10K or 5K linear format. (Almost every other variation is...
  5. Replies
    74
    Views
    12,268

    Wow. So you wouldn't have to repeat the code for...

    Wow. So you wouldn't have to repeat the code for each voice?! This sounds awesome. Looking forward to trying this out when I get home.
  6. Replies
    74
    Views
    12,268

    @wrightflyer What exactly would it mean to have a...

    @wrightflyer What exactly would it mean to have a multi-voice audio tool? I know a lot of folks have built poly synths using the current library, myself included, that could be considered...
  7. Aha!!! 48 hours of debugging has finally paid...

    Aha!!! 48 hours of debugging has finally paid off.

    It turns out I had a couple redundancies in the setup function that were causing a big pileup of MIDI data. Basically I was doing an initial...
  8. Sure. I have several LEDs in the circuit that...

    Sure. I have several LEDs in the circuit that flash when the program is running (LFO indicators). When I load the program, they all go out immediately. The serial monitor logs the first few things...
  9. Thanks to you both for the feedback. I tried...

    Thanks to you both for the feedback.

    I tried to extract the offending piece of code from a much larger program, but I'm realizing I left out a lot of context. (I never know exactly how much...
  10. Also, here's a video of the synth/controller, if...

    Also, here's a video of the synth/controller, if it helps visualize what I'm trying to do.

    https://www.youtube.com/watch?v=VpGOdtfuOTQ
  11. Here's the full code repo. ...

    Here's the full code repo.


    The problem lies in the updateSlider function. I can send MIDI pitch bends over 8 channels with USBMidi, no problem. But when I attempt to do that over the serial...
  12. Hi Pete, That code was a bit messy. Sorry...

    Hi Pete,

    That code was a bit messy. Sorry about that. I just cleaned up the typos.

    The code reads the values of 8 different sliders and sends a MIDI pitch bend to 8 different channels based...
  13. Help with MIDI Controller: Trying to send pitch bend over 8 separate channels

    I'm running into an issue in a MIDI controller project I'm working on. I'm trying to make an MPE controller that will send pitch bend data over 8 channels of MIDI. But for some reason, I can only...
  14. This looks really cool. Thank you for sharing...

    This looks really cool. Thank you for sharing your work!
  15. Replies
    2
    Views
    604

    Genius. That's all it took. Thanks @kallikak.

    Genius. That's all it took. Thanks @kallikak.
  16. Replies
    2
    Views
    604

    Help with Sawtooth LFO Indicator

    Hi everyone,

    I'm trying to figure out something really simple--how to light an LED indicator proportionally to a Sawtooth LFO. So at the beginning of the wave, the LED would be completely dimmed,...
  17. Replies
    3
    Views
    771

    Edit: There was no popping on those waveforms. ...

    Edit: There was no popping on those waveforms. Just my own bug in the multiplexer code. I spoke too soon.

    Again, thank you for your explanation and for your work on the audio library! It makes...
  18. Replies
    3
    Views
    771

    Thanks so much, Mark! So in practice, sampling...

    Thanks so much, Mark!

    So in practice, sampling a square wave (or any waveform with high harmonic content) at 44.1 kSPS will reflect harmonics that should be above our hearing range back into the...
  19. Replies
    3
    Views
    771

    Bandlimited Waveforms and Aliasing

    I've seen a lot of posts about band-limited waveforms reducing aliasing and generally sounding a lot better than the standard waveforms in the audio library. I must say using the standard audio...
  20. Thanks, Mark and Jonathan! I went ahead and...

    Thanks, Mark and Jonathan!

    I went ahead and added a read function (same as your getGain function) to the envelope.

    Now the question is, can I get a value from a waveform object that I could...
  21. Read Functions for Audio Waveform and Envelope Objects

    Hi,

    I'm working on a synth build, and would love to add some LED indication for the envelopes and LFO. Would it be feasible to add some kind of read function to the waveform and envelope objects...
  22. Update: I just got the boards in today and the...

    Update:

    I just got the boards in today and the 2x20 pin with all grounds on one side is working great.

    24171

    Very clean signals from the MUXs.

    Thanks everyone for your help.
  23. Replies
    18
    Views
    2,439

    Ah! Thank you. I just added that third...

    Ah! Thank you. I just added that third regulator.



    Knocked them down to ~100uF.




    I decided to put a voltage divider on the mute circuit based on this guy's recommendation. He says it...
  24. Replies
    18
    Views
    2,439

    Here's my attempt at building a PCM5102A into the...

    Here's my attempt at building a PCM5102A into the board with a Teensy 4.1.

    I think I have the Teensy pins correct, but I need to buy a pre-made board and double check it before printing this one. ...
  25. Good call. I guess there's no real reason to...

    Good call. I guess there's no real reason to skimp on pins, and it seems like 40pin is a more common size than 24.
  26. Huh. I wouldn't have thought of using GPIOs as...

    Huh. I wouldn't have thought of using GPIOs as extra grounds. My current ground is just running from the voltage regulator.

    What exactly would using the GPIO's ground accomplish? In general is...
  27. Thanks, Mark. OK, so perhaps I just need to...

    Thanks, Mark.

    OK, so perhaps I just need to intersperse ground signals and logic signals and all will be good.

    I don't think the signals will be particularly fast. I'll probably poll the MUXs...
  28. Will this work? -- Connecting two boards using IDC Cable.

    Hey all,

    I’m starting to lay out PCBs for a Teensy synth and I wanted to see if I have a fundamental flaw in my design before I get too far. Any advice would be greatly appreciated. Here are the...
  29. Replies
    18
    Views
    2,439

    Ahh... good point about the layout and schematic...

    Ahh... good point about the layout and schematic in the datasheet. That's handy.


    23918
  30. Replies
    18
    Views
    2,439

    OK, great! Thank you so much. I'll probably...

    OK, great! Thank you so much.

    I'll probably end up laying it out on the board just because I could use the practice with PCB design.
  31. Replies
    18
    Views
    2,439

    Thanks, Frank.

    Thanks, Frank.
  32. Replies
    18
    Views
    2,439

    OK, great! Thanks for weighing in, Paul. I...

    OK, great! Thanks for weighing in, Paul.

    I guess I'm just confused on what's going on with a breakout board like the one that PaulS linked. (The other PaulS.). If I can connect the PCM1502A with...
  33. Replies
    18
    Views
    2,439

    Sounds great! Any ideas where I could look to...

    Sounds great! Any ideas where I could look to find a proper schematic to use a PCM5102A with a Teensy? I'm hoping to integrate it into the PCB instead of buying a breakout board.
  34. Replies
    18
    Views
    2,439

    Help me decide on a DAC for a poly synth

    Hi Teensyers,

    I'm building a Teensy poly synth and would like to figure out how to build out my own DAC hardware. Here's a pic of the prototype board. Currently using the Audio Board, which...
  35. Sorry for the delayed response. I think that a...

    Sorry for the delayed response.

    I think that a relay (or pair of relays) is the only way I can conceptualize getting the PTT to work. Thanks for that idea. I'm not really well-versed in analog...
  36. Oh, ok. So the host pins are for powering and...

    Oh, ok. So the host pins are for powering and communicating with external "devices" plugged into the teensy. Thanks for the explanation WMXZ.
  37. Teensy 4.1 Breakout -- Power and USB question

    Hi all,

    I'm building a synth with a Teensy 4.1 and have a question about power and USB. I'd like to have my breakout board feature an external USB B connector where I can program and get...
  38. "1970's planet CB *social media* was hugely...

    "1970's planet CB *social media* was hugely entertaining. Hooked up guitar multi-effects, yeah , waa-waa, fuzz, flanger whatever so all "on - air" setting up/testing was dumped into a 50 ohm dummy...
  39. Thanks so much for all the info! I think you're...

    Thanks so much for all the info! I think you're right, that maybe the way to go is building the circuit into the actual mic instead of a standalone unit. I'm having a hard time getting my head...
  40. Hey, thanks for the response! Yeah, ...

    Hey, thanks for the response!

    Yeah, apparently they used to put analog delay in old CBs back in the day as a kind of identifier for your voice.

    The CB is a Cobra 29, with a 4 pin aviation...
  41. CB Radio Effects Unit. Can anyone help with a wiring puzzle?

    Hi Teensyers,

    I’m working on a maker project for a friend, but am having a hard time figuring out some technical details. If anyone has any ideas on how to solve this problem I’d be super...
  42. Replies
    6
    Views
    1,353

    OK. That's what I thought I understood from...

    OK. That's what I thought I understood from Paul's comment on Teensy midi page.

    For newer Teensy boards with 3.3V signals, 74HCT4051 chips are best. Power the 74HCT4051 from 5V. If 74HC4051...
  43. Replies
    6
    Views
    1,353

    Thanks! I'll plan to change the bias on that...

    Thanks! I'll plan to change the bias on that 74HCT4051 chip to +3.3V instead of 5V and keep everything else the same.

    Appreciate it.
  44. Replies
    6
    Views
    1,353

    Multiplexer Wiring

    Hi all,

    Would someone be able to confirm this wiring for an analog multiplexer (74HCT4051) circuit with the Teensy 4.0? I would be reading from potentiometers biased at 0 and 3.3V, but powering...
  45. OK. That's really helpful, Paul. That seems...

    OK. That's really helpful, Paul. That seems like a obvious way to start troubleshooting that I didn't think of--just breaking the whole thing into parts and tuning or recording each individual...
  46. OK. So setting lineOutLevel to the maximum value...

    OK. So setting lineOutLevel to the maximum value seemed to help a lot. There's still the same resting noise, but the signal to noise ratio is much higher now.
  47. Thanks for replying, Paul. Here's the source...

    Thanks for replying, Paul. Here's the source code and answers to your questions inline:

    do you have any flashy lens (neopixel or ws2812s or anything like that?)

    No, nothing like that connected...
  48. Hey Mark. I'm actually not convinced that it...

    Hey Mark. I'm actually not convinced that it makes much difference in my case.

    Here are some audio samples I just recorded.

    It looks like:

    -running the sketch with...
  49. Awesome. I'll definitely try disabling that...

    Awesome. I'll definitely try disabling that software filter. It sounds like I'm having the same issue as the person who wrote that.

    Thanks!
  50. Ahh... Good to know about the MUX. I'll either...

    Ahh... Good to know about the MUX. I'll either buy the Sparkfun version or just buy the component and work it into a PCB.
Results 1 to 50 of 57
Page 1 of 2 1 2