Search results

  1. T

    Crosspoint Mixer

    Already did that! Code posted somewhere here - I guess click on my post history...
  2. T

    Pitch control of sample playback: current state of things?

    Sounds like about 30 minutes of work if you already have the kitten sample as an array of bytes or ints... You'll need to right a simple class derived from Audiostream. Maybe hack "synth_sine" class for starters...
  3. T

    Cheap Audio output on Teensy 4.x ?

    If you want dirt cheap but reasonable audio you could use the Sparkfun i2s audio breakout which would save you a lot of work (even comes with amp). It should work with the Teensy Audio library and I intend to do just that for a project. Might have to fiddle with some initialisation code but...
  4. T

    Arbitrary sized mixers

    It's basically what would happen if you concatenate a bunch of AudioMixer4 things albeit marginally faster as you don't have all the summing of mixers upon mixers. For "__ARM_ARCH_7EM__" which I think is Teensy 3.2 and above (I'm using a 4.0 so don't really think about this) the summations are...
  5. T

    Arbitrary sized mixers

    If like me and you're dealing with lots of simultaneous voices (eg synth project) you're probably a bit frustrated with AudioMixer4 having only 4 inputs. Then you'll have the large cascade of patchcords to stitch together to join everything up. Super messy code and inflexible. Well, I've...
  6. T

    Oscilloscope advice

    Elmue, why don't you ask him yourself? He's got a huge forum and specialises in test equipment more so than PJRC. I'm a happy Rigol owner so don't have an itch to scratch... You have to understand these devices are extremely complicated. I make a living writing software (graphics specialist)...
  7. T

    Oscilloscope advice

    Dave Jones - my fellow Aussie - on EEVblog was loaned the DS1054z he reviewed and subsequently bought one of his own. Coincidentally, I also bought it from the same company (down the road from me) after watching his review. There's no need to cast aspersions without any evidence.
  8. T

    Oscilloscope advice

    This is why I only buy things like that from actual brick and mortar shops I can drive to. If there's a problem with yours maybe take it back for a refund ore replacement if you can. As the saying goes, one swallow does not make a summer. So it's sad you have personally a bad experience but...
  9. T

    Oscilloscope advice

    The problem seems to be only when you are using "24 megasample" capture mode as described in your stackexchange thread. Is that correct? So your scope should be still fine at 12MSP? Or have you found issues with that which would possibly also manifest on my 1054z? It has to be said the...
  10. T

    Oscilloscope advice

    I have a Rigol DS1054z. It's close to your $300 budget. 4 channels, 50MHz. Apparently you can "software hack" it to 100MHz but I haven't needed or wanted to. It's a really nice thing to use and doesn't take up much space.
  11. T

    Future Teensies!

    You can add easy to use WiFi to your project with an ESP8266 for < $2. It's kinda nuts how cheap that is.
  12. T

    zero crossing audio object for frequency detection

    What I find particularly amusing is you're turning into a flute into another instrument and my personal challenge was to turn a guitar into a flute! Here's Bohemian Rhapsody as played by a bank of 32 flutes... :) http://fluffysoft.com.au/Bohemian_Rhapsody.mp3
  13. T

    zero crossing audio object for frequency detection

    That looks really cool :-) I'm doing a guitar synth project - polyphonic tracking. But all in the digital domain. So far I'm getting 10-80Hz latency depending on the note. You're a much better guitarist than me! I'm not good enough with analogue design to dare to give you any advice with...
  14. T

    zero crossing audio object for frequency detection

    Do you mean band pass filters (at least for the intermediate ranges)? What are you trying to measure? How separated do you expect the 4 frequencies you are trying to measure are? It could be very difficult or easy depending on what it is.
  15. T

    zero crossing audio object for frequency detection

    Are you trying to measure an external signal? If so, for minimum latency you might consider using an external comparator like an LM393 and connect it's output to a digital input. You can use a potentiometer as a voltage divider for the comparison voltage then AC couple the input signal via a...
Back
Top