Search results

  1. T

    Connecting external amp to teensy audio shield's headphone jack

    With line out from teensy to channel 3 of the amp, I’m setting both CH3 and master to 50%.
  2. T

    Connecting external amp to teensy audio shield's headphone jack

    Update: I have connected line out, which works great!
  3. T

    Connecting external amp to teensy audio shield's headphone jack

    Thanks for going through the amp specs! Here is my sequence of things to do (when teensy is on battery power). Please correct me. 1. Set sgtl5000 volume() to 0.5. I like to keep it fixed for my application: 2. Connect teensy audio shield headphone jack to aux in on roland and set its level to...
  4. T

    Connecting external amp to teensy audio shield's headphone jack

    Thanks for the clarity! There are situations when I am completely on battery (both teensy and roland). I’d be glad to use the headphone jack for those occasions. What should I keep the sgtl5000 volume() to in that case? I’ve been keeping it at 0.5, but would like to optimize that for best audio...
  5. T

    Connecting external amp to teensy audio shield's headphone jack

    I can potentially solder an output jack directly to the audio board. The board, however, has two of the nine pins unnamed. I’m assuming they are ground. The amp data sheet states input level as -20 dBu. However, its own line out is rated at +4 dBu. I’m not sure what the standard for line level...
  6. T

    Connecting external amp to teensy audio shield's headphone jack

    Also, how should I decide the value for lineOutLevel()? I can keep it at default, but want to understand how that's decided.
  7. T

    Connecting external amp to teensy audio shield's headphone jack

    I'm convinced. Now, for connecting the line out, I have found this AC97 on amazon. https://a.co/d/e158eOy Would the output jack on this work as such (without any modification)? This should be the standard connector for PCs.
  8. T

    Connecting external amp to teensy audio shield's headphone jack

    Hello everyone, Is there any advantage of using the audio shield's line out over its headphone jack for connecting an external amplifier? I've been using the headphone jack for this purpose so far, with sgtl5000 volume() set to 0.5, and have not had any trouble with my external amp (Roland KC...
  9. T

    Artifacts heard while playing computer audio through teensy

    Thanks for the directing me to that thread! I glanced through it and realized that the issue is somewhat beyond my bandwidth at this point.
  10. T

    Artifacts heard while playing computer audio through teensy

    I get it. Is there a practical way to avoid the artifact though? Why do USB speakers in general not have this problem? (Teensy is acting like a USB interface here.)
  11. T

    Artifacts heard while playing computer audio through teensy

    That makes logical sense to me. However, the sampling rate is 44.1kHz at both ends. Do you mean that there might be a slight difference even then? It reminds me of an experiment that I did once when I played a sine of 440 Hz on two computers, and there were audible interference beats (though...
  12. T

    Parametric eq when teensy is set to output audio to a computer

    Yes, but the reason I was asking is that the audio from Teensy without any equalization didn’t sound the same as that from the computer.
  13. T

    Artifacts heard while playing computer audio through teensy

    There is no nearby phone nor is there an SD card on Teensy. The artifact sounds like a glitch. Let me share a recording.
  14. T

    Parametric eq when teensy is set to output audio to a computer

    That helps. Yes, I’m referring to sgtl5000. Thank you!
  15. T

    Parametric eq when teensy is set to output audio to a computer

    Hello, I have noticed that the audio output sounds different from the headphone jack on the audio shield of teensy, as compared to when it is sent to a computer to record and play. I’m using the 7 band parametric eq function in the code. I’m guessing that it works only for the headphone output...
  16. T

    Audio clipping after using the 7 band parametric eq

    Hello! I’ve noticed that my audio sounds clipped after raising the levels of the 7 band parametric eq. As a best practice, what should I keep the overall amplitude of the audio so that it doesn’t clip even after all the eq parameters are max? Thanks in advance! Tejas
  17. T

    Artifacts heard while playing computer audio through teensy

    Hello! I’m using teensy as a simple audio output device for my computer. It works fine. However, after every few seconds I hear an artifact which sounds like a scratched CD (compact disk). I’m not sure of the cause. Any ideas to fix it? I can share code/audio if needed. Thanks in advance! Tejas
  18. T

    Avoiding audio clipping after using sgtl5000_1.eqFilter()

    Anyone having an answer to this?
  19. T

    Creating custom waveforms

    Thank you, @MarkT and @manicksan! I'll give this a try and get back if I'm stuck.
  20. T

    Creating custom waveforms

    Hello! I am trying to create a waveform that resembles the recorded sound of an organ. I see two options for doing that. 1. Using arbitraryWaveform(): I would open the recorded sound in audacity and export one wavelength as text data. This is between -1 and +1. I have three questions in this...
  21. T

    Avoiding audio clipping after using sgtl5000_1.eqFilter()

    Hello! I have noticed that increasing the dBgain in calcBiquad() beyond a certain point leads to audio clipping. That point is different for each of the 7 filters. Is there a way to avoid the clipping? My output signal gain is 1. If I reduce the gain a little, the clipping stops. However, I...
  22. T

    Difficulty with beginPitchShift

    That did the trick! Thanks for the suggestion. :)
  23. T

    Difficulty with beginPitchShift

    The signal is going through the granular object, and I do hear it the moment I comment the following line. However, when the line is uncommented, I hear nothing. Here is how the flow looks.
  24. T

    Difficulty with beginPitchShift

    Hello! I am trying a simple project where I want to change the pitch of audio from mic input of Teensy audio shield, and send it out via the headphone jack of the shield. My code is attached. I am unable to hear any audio. However, the moment I uncomment the only line in the loo(), I can hear...
Back
Top