Anyone try XYScope!? Help!

Here's an article about the project.

http://www.creativeapplications.net/news/xyscope-a-processing-library-to-render-graphics-on-a-vector-display/

This is awesome and I happen to have an oscilloscope collecting dust. How do I hook up the oscilloscope to the computer?

Answers

  • So it seems he is using minim to generate the data. I guess you connect your speaker out to your scope and set it to XY mode... This is the only thing I can infer from skimming over the source code:

    https://github.com/ffd8/xyscope/blob/master/src/xyscope/XYscope.java

    You can always contact the author so he can expand on his documentation. Cool project!

    Kf

  • edited July 2017

    That looks right. Probably (?) mini audio jack out of the computer and into the oscilloscope, with a left channel = x and right channel = y.

  • I can confirm that that's how it works. Also checkout his page for more info.

  • edited July 2017

    @hamsterwoede -- Thanks for the link -- that is a very cool demo video.

    https://vimeo.com/video/226597331

    ...and thanks for sharing your demo code here: https://forum.processing.org/two/discussion/23617/fft-analysis-music-visualisation-on-oscilloscope

  • Eeek, wish I had seen this thread earlier. Hey there, creator of XYscope here and happy to see its use start to popup. Thanks everyone above for the clarification on physical setup that I've completely forgotten to include on the library documentation (tunnel vision on project)...

    Yup relying heavily on Minim for converting the vector shapes to audio waves that are sent via plane ol stereo to the X - Y inputs of a scope in XY mode. You can use the headphone jack, with a 1/8" minijack to RCA/cinch cable.. attaching to the oscilloscope with BNC to RCA/cinch adaptors. Those cables/adaptors would be just a few dollars. Eventually, you may want to get a multi-channel DAC for not only controlling multiple oscilloscopes, but also getting 3 channels out, for XY and Z (blanking/brightness) for even more fun.

    If you don't like the constant re-centering/movement of the shapes (sometimes great, sometimes annoying), then you'll need a DC-coupled audio device: http://www.expert-sleepers.co.uk/siwacompatibility.html

    A nice demo of what that means can be found here:

    I'll try to make some short walk throughs of the library soon, including special MacOS audio setup necessary for multichannel audio.

Sign In or Register to comment.