EEVblog

Sdílet
Vložit
  • čas přidán 5. 08. 2019
  • Most modern DSO's don't have Alternate Triggering, but Dave shows you how to do it anyway!
    This allows you to trigger on, align, view and anaylse two otherwise asynchronous time un-correlated signals on the screen at once.
    Also a look at Dual Time Base oscilloscopes.
    Oscilloscope Tutorial Video Playlist: • Oscilloscope Tutorials
    Forum: www.eevblog.com/forum/blog/ee...
    #Oscilloscope #Trigger #Tutorial
    Bitcoin Donations: 38y7DE8HEHNj8fGDtUr4PkCn9nWxiorvvy
    Litecoin: ML7oQokTwB38bgzzjLDbRV97HKAHuwRfHA
    Ethereum: 0x11AceA38DCA9DbFfB4F35f3F746af65F9dED28ce
    EEVblog Main Web Site: www.eevblog.com
    The 2nd EEVblog Channel: / eevblog2
    Support the EEVblog through Patreon!
    / eevblog
    AliExpress Affiliate: s.click.aliexpress.com/e/c2LRpe8g
    Buy anything through that link and Dave gets a commission at no cost to you.
    Stuff I recommend:
    kit.com/EEVblog/
    Donate With Bitcoin & Other Crypto Currencies!
    www.eevblog.com/crypto-currency/
    T-Shirts: teespring.com/stores/eevblog
    Likecoin - Coins for Likes: likecoin.pro/@eevblog/dil9/hcq3
  • Věda a technologie

Komentáře • 85

  • @AndreasB5896555
    @AndreasB5896555 Před 4 lety +26

    Arduino Sketch to test this:
    void setup() {
    pinMode(LED_BUILTIN, OUTPUT);
    pinMode(7, OUTPUT);
    pinMode(8, OUTPUT);
    }
    void loop() {
    digitalWrite(LED_BUILTIN, HIGH);
    for (uint8_t i = 0; i < 50; i++) {
    digitalWrite(7, HIGH);
    delayMicroseconds(1);
    digitalWrite(7, LOW);
    delayMicroseconds(1);
    }
    delay(10);
    digitalWrite(LED_BUILTIN, LOW);
    for (uint8_t i = 0; i < 50; i++) {
    digitalWrite(8, HIGH);
    delayMicroseconds(1);
    digitalWrite(8, LOW);
    delayMicroseconds(1);
    }
    delay(10);
    }

    • @WillArtie
      @WillArtie Před 4 lety +6

      Ha. Nice one. Not often is code posted in the comments.

    • @EEVblog
      @EEVblog  Před 4 lety +6

      Nice!

    • @alt0v14
      @alt0v14 Před 3 lety +1

      thanks, it works :)

  • @marknn3
    @marknn3 Před 4 lety +20

    You can't have more than one edge trigger in a pattern because two edge triggers cannot occur at the same time. This is by definition, because an edge trigger occurs at a single point in time, which in theory is infinitly small.
    Hope this makes sense.

    • @EEVblog
      @EEVblog  Před 4 lety +4

      Of course, makes sense now, i should have realised that.

    • @donreid358
      @donreid358 Před 4 lety +1

      The hardware probably has just one edge detection circuit.

    • @marknn3
      @marknn3 Před 4 lety +1

      @@donreid358 Even if it did, then it still does not make sense to use two edge triggers in a trigger pattern.

    • @donreid358
      @donreid358 Před 4 lety +1

      @@marknn3: yes I see what you are saying and agree. An edge happens at a narrow instant in time and 2 won't likely be at the same instant.

    • @nophead
      @nophead Před 4 lety +5

      Yes but for OR why do they need to happen at the same time? If it was AND it would make sense they can't both be edges but you can certainly OR the outputs of two edge detectors if they produce a pulse for an edge.

  • @bostedtap8399
    @bostedtap8399 Před 4 lety +2

    Enjoying these tips and tricks Mr Jones, working my way through your playlist.
    Thanks for sharing and best regards from the UK.

  • @PeregrineBF
    @PeregrineBF Před 4 lety +6

    For a scope without this feature but with the ability to save a reference waveform (eg the Rigol DS 1054Z without options enabled) you can zoom in appropriately, trigger off one channel, and save that as a reference. Then trigger off the second channel and compare with your reference.

  • @OneBiOzZ
    @OneBiOzZ Před 4 lety +3

    I have an old crappy gratten 100mhz 2 channel scope with a properly named alternate trigger ... it has proven to be very useful

  • @PixelSchnitzel
    @PixelSchnitzel Před 4 lety

    How timely! I just encountered this over the weekend. I reconnected my bench setup and tried again on my Rigol DS2302A-S and got it to work with pattern triggering. Thanks for the tip!
    FWIW, I'm looking at the time delay from externally triggering a bank of HP 3478A DMM's until I get the "voltmeter complete" pulse from the rear BNC connector. Verifying that all 4 meters are triggering in sync.

  • @kensmith5694
    @kensmith5694 Před 4 lety +1

    Some older dual timebase analog scopes had a mode like that. It alternated between timebase A and B. You couldn't do "delayed" mode with it but in many cases just the A,B toggle effect was all that was needed.
    You could also do the "overlapped" mode on the delayed time base. This could be even better if you wanted to measure the time between the two events as well as see what the later one looked like in detail.

  • @seanmangan2769
    @seanmangan2769 Před 4 lety +1

    I laughed out loud; "... Bloody touch screens..."

  • @samuelschwager
    @samuelschwager Před 4 lety

    Never noticed Dave's logo on the scope until today ;)

  • @WillArtie
    @WillArtie Před 4 lety

    Thanks DJ. Love a good scope tute.

  • @wolfgangschweiger9557
    @wolfgangschweiger9557 Před 4 lety +1

    For the Rohde&Schwarz I use high for the first channel and low for the second, then I get a stable trigger.
    Thanks for this great hint.
    Greetings,
    Wolfgang

  • @Tool-Meister
    @Tool-Meister Před 4 lety

    In analog days, you could TRY composite trigger, combined with variable hold-off amend MAYBE get the two bursts to align. In 7000 series you could use Alternate - alternate mode and pair channel one display and trigger to time base A and channel 2 display and trigger to time base B. Pretty slick.

  • @nikmilosevic1696
    @nikmilosevic1696 Před 4 lety +3

    Weird my old Tektronix TDS3000 has alternate triggering, I just assumed other nice DSO's had it also.

  • @tablatronix
    @tablatronix Před 4 lety

    I was literally trying to do this last night, great video!

  • @blockbertus
    @blockbertus Před 4 lety

    I like the 2016 special edition faceplate for the nobs and buttons. ;-)

  • @FindLiberty
    @FindLiberty Před 4 lety +4

    Where did my ALT and CHOP triggers go? lol
    Ah, Bee Did-El-Lee ...the good old days!

    • @EEVblog
      @EEVblog  Před 4 lety +1

      I was an ALT man myself

  • @vega1287
    @vega1287 Před 4 lety +3

    i actually have an old analog scope that also can trigger on alternating channels and the best thing is when only one chanel id active it always triggers on thr active chanel

  • @portblock
    @portblock Před 4 lety

    Just curious, on an analog scope, I once made an 8ch digital input project that allowed an analog scope to show 8 channels on only one channel -- Thinking back on this, I could have used this technique to show compare pulsewidths of 8 pinputs.... I wounder if you could just use at the analog level, just put two diodes on the input to make an OR circuit to a dedicated trigger input, Ch1, Ch2, Trigger inputs on scope?

  • @Sigmaxt
    @Sigmaxt Před 2 lety

    The GW Instek should have it. In the Trigger menu select Source and you should find Alternate

  • @kevincozens6837
    @kevincozens6837 Před 4 lety

    Another very useful scope tutorial, Dave. I will be giving this a try. This technique may prove useful on a project I'm currently working on. I need to monitor two serial data lines where one line outputs a signal in response to another. They are non-overlapping and at least a quarter second between them.

  • @pausmth
    @pausmth Před 8 měsíci

    What would the use of a random trigger holdoff be? I guess just for hysteresis type reasons, since real signals are never as nice as proper training type signals? Only think I can really think of...

  • @Matthias051
    @Matthias051 Před 4 lety

    Thank you

  • @ryanzheng8735
    @ryanzheng8735 Před 4 lety

    I use an IWATSU SS-7810 which is a dual channel 100M analog scope and has both DLY and ALT trigger. Digital scopes in ALT or pattern or something like that uses software trigger which uses ADCed data for triggering, as a result many functions would be unavailable.

  • @KillerSpud
    @KillerSpud Před 4 lety +1

    FWIW, I have a Siglent SDS 1052DL+ here that has an alternate trigger mode. So there is that.

  • @RemcoStoutjesdijk
    @RemcoStoutjesdijk Před 4 lety +2

    How would you implement single shot with independent time bases? Wait until some or all have triggered once?

    • @Basement-Science
      @Basement-Science Před 4 lety

      I guess it would be best if it´s configurable in the trigger menu.

  • @uwezimmermann5427
    @uwezimmermann5427 Před 4 lety +1

    I always warn my students that the ALT trigger setting (as it is called on our student lab's analog oscilloscopes) is a dangerous function, because it will - wrongly used - hide all phase relationship between the two channels. But yes, your case actually makes sense for these settings.

    • @EEVblog
      @EEVblog  Před 4 lety

      Yep, potential trap for young players.

  • @philpearce3248
    @philpearce3248 Před 4 lety +1

    Thanks Dave a most interesting video, I have a Tek TDS5054B which has the Logic/Pattern functions in the Avanced trig menue.

  • @UpcycleElectronics
    @UpcycleElectronics Před 4 lety +1

    QUWHATT! (12:12) Scopeman talks about a feature on my DS1052E!!! I 'bout choked on my lunch. Thanks Scopeman :-)

  • @cuteswan
    @cuteswan Před 4 lety +6

    Thanks for the info and especially the demonstrations across brands, BTW Now that you have the multimeters all set, when do you plan to design and start selling your own scope too? ;)

    • @cyanide888
      @cyanide888 Před 4 lety +1

      No..Power-supply...Power Supply (please Dave)

    • @cuteswan
      @cuteswan Před 4 lety

      Okay, I can't disagree with you on that. :) Still, I think one of these companies should hire Dave to consult on the interface design for their scopes, laying it out as intuitively as he'd like it and eliminating all of the annoyances he finds with many of them. (It'd probably feature a big-ass knob that is clickable, pullable, pushable, top-hattable [?], has haptic feedback, plus an adjustment collar and a few pinkie buttons/slides for channel & mode... along with being fully touch-screen too, of course.)

  • @chrismorley5393
    @chrismorley5393 Před 4 lety

    On the pattern triggering two rising edges makes no sense for AND so maybe the UI just isn't smart enough to permit it when OR is selected...?

  • @ovalwingnut
    @ovalwingnut Před 4 lety

    Good stuff. Adding this to my resume as we speak. A jack of all trades and a master of none... is my middle name.

  • @brentdennard6722
    @brentdennard6722 Před 4 lety +1

    yay, he's doing more scope tutorials! I was worried that this was turning into the solar roadway update channel for a minute there...

  • @Ziferten
    @Ziferten Před 4 lety

    Altern-Ate! Long A! The triggers go back and forth, not to some other auxiliary source.

  • @laad
    @laad Před 4 lety

    Do you own all of those scopes? I wish I can afford just one decent scope for home use.

  • @fixituntilitsbroke2263

    13:42 - Kamagatsu? What is that word you keep using?

  • @tocsa120ls
    @tocsa120ls Před 4 lety +1

    Reasons to keep my 453A...

  • @vencibushy
    @vencibushy Před 4 lety +1

    Or use a very old dual beam oscilloscope.

  • @michaelhawthorne8696
    @michaelhawthorne8696 Před 4 lety +2

    Someone made a comment about selling your own scope,
    I'm pretty sure you could design one.
    Now that would be a great set of videos to watch.....

    • @UpcycleElectronics
      @UpcycleElectronics Před 4 lety

      Definitely. He could test the viewership waters by designing a decent front end from scratch. That would be a good start and could be done in a practical way with lots of great analogue lessons. I haven't seen anyone upload practical content about analogue networks, auto ranging, attenuation, and driving an ADC. There are some uploads from various manufacturers, but I haven't seen anything from a neutral party/design perspective.
      The high speed ADC and FPGA stuff would be interesting but less practical, at least for me. It's rare to find someone that can explain code in video format that has flow and can be followed. I doubt I would watch much about human interface design.
      I have a feeling it would take one person quite a lot of time to design something like this. Filming, editing, and uploading content on the subject would easily extend the development time by an order of magnitude. I don't know how feasible this is.
      I imagine Keysight might be interested in some kind of partnership, assuming their recent marketing campaign has proven fruitful. I haven't purchased a scope from them but they went from just another entry on my list of brands to explore to the top of my list based on Dave's exposure and the quantity of YT CC's I watch that use them now.
      For me to consider a new scope it would either require some serious improvement in available features or a critical task I am unable to do with my scope before I'll go looking for a new one. I don't know how many engineers would buy something like a scope just because of it's branding/marketing. Plus what feature set and price point could he target. I'm a total entry level type customer, but I followed the best value option for my first scope. I can't imagine any amount of marketing could overcome this. The product would need to be at a near equivalent pricepoint value. Given the competitive number of products on offer, those most be some really tight margins within this segment right now. It would be interesting to see how such a thing could work. I'm skeptical, but I'd love to be proven wrong.
      -Jake

  • @kwastek
    @kwastek Před 4 lety

    Siglent SDS 1104X-E works also with OR condition and HIGH levels set. Thanks for the video and for the Arduino code. Arduino bitbanging happens to be glitchy though, so for a while I thought it's a problem with triggering. But no, Siglent in fact works well with this type of triggering.

  • @blancsteve4819
    @blancsteve4819 Před 4 lety +2

    Winner, winner bleached chicken dinner.

  • @Digital-Dan
    @Digital-Dan Před 4 lety

    That's klooooooge, please!

  • @flymypg
    @flymypg Před 4 lety

    Don't you generally have to be STOPPED for Single-Shot to work?

    • @EEVblog
      @EEVblog  Před 4 lety +2

      Nope

    • @ferrumignis
      @ferrumignis Před 4 lety +1

      The scope stops *after* a single shot has triggered.

  • @danthemancasey
    @danthemancasey Před 4 lety +1

    Pssst... I could pull this off with my Tektronix 475.

  • @oly463
    @oly463 Před 4 lety

    And a link for doing something similar on Rigol / Ultrasigma
    rigol.desk.com/customer/en/portal/articles/2285624-programming-alternating-triggers

  • @donreid358
    @donreid358 Před 4 lety

    I used to make a lot of use of a dual timebase in "B trigger after A" mode. That lets you find an arbitrary event that comes after some other event.

  • @jrb_sland5066
    @jrb_sland5066 Před 4 lety +1

    Just for completeness, I should point out that it is easy peasy to analyze two otherwise asynchronous time uncorrelated signals using two oscilloscopes. I have on occasion used three elderly analog Tektronix scopes to see everything I wanted to see simultaneously.

  • @michaelhawthorne8696
    @michaelhawthorne8696 Před 4 lety

    Glad to see my SDS1104X-E is waving the green flag on this function.
    My SDS1102CML has Alternate trigger option.

  • @Krmpfpks
    @Krmpfpks Před 4 lety

    ESSENTIAL.... for niche applications ;-)

  • @trickyrat483
    @trickyrat483 Před 4 lety +3

    Dave - you've got too much time and too many scopes. :)

  • @matsv201
    @matsv201 Před 4 lety

    The other day a spoiler alert in a aircraft video.. now a trigger warning in a oscilator video.. :O

  • @custodiogomesbarcellos4972

    Cool

  • @chilljlt
    @chilljlt Před 4 lety

    No! We want more oscilloscope videos!

  • @dieboodskapper
    @dieboodskapper Před 4 lety

    OK TOTALLY TRIGGERED!!!

  • @electronic7979
    @electronic7979 Před 4 lety +1

    👍

  • @CoolDudeClem
    @CoolDudeClem Před 4 lety +1

    I read the title of this video as "How to ALIEN Signals On A Digital Scope".

    • @iroll
      @iroll Před 4 lety

      Same. Honestly only clicked to make this comment, hahaha.

  • @pinfarmer
    @pinfarmer Před 4 lety

    First times infinity

  • @slindenau
    @slindenau Před 4 lety

    I read "Alien signals". Can you imagine my disappointment :)?

  • @DreitTheDarkDragon
    @DreitTheDarkDragon Před 4 lety

    ♫ Here's a little lesson in trickery...

  • @brazeiar9672
    @brazeiar9672 Před 4 lety +2

    We need more teardowns tbh

    • @EEVblog
      @EEVblog  Před 4 lety +5

      I'll try and forego the useful and unique tutorial videos to bring you more teardowns...

    • @amirb715
      @amirb715 Před 4 lety +4

      @@EEVblog no!

    • @brazeiar9672
      @brazeiar9672 Před 4 lety

      @@EEVblog Or you could just accept a helpful suggestion of what your audience likes and be less sensitive and defensive. I've noticed more recently in live streams you've developed a bit of an angry streak, maybe its time for you to take a youtube break as being on here is clearly getting to you.

  • @rollyaponte2281
    @rollyaponte2281 Před 4 lety

    First

  • @FuzzyTronics
    @FuzzyTronics Před 4 lety

    Just when I thought it was time to unsubscribe

  • @piad2102
    @piad2102 Před 8 měsíci

    Oh no, trigger warning. Better not watch. Bye.