EEVblog

แชร์
ฝัง
  • เผยแพร่เมื่อ 15 ม.ค. 2025

ความคิดเห็น • 85

  • @AndreasB5896555
    @AndreasB5896555 5 ปีที่แล้ว +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 5 ปีที่แล้ว +6

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

    • @EEVblog
      @EEVblog  5 ปีที่แล้ว +6

      Nice!

    • @alt0v14
      @alt0v14 4 ปีที่แล้ว +1

      thanks, it works :)

  • @marknn3
    @marknn3 5 ปีที่แล้ว +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  5 ปีที่แล้ว +4

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

    • @donreid358
      @donreid358 5 ปีที่แล้ว +1

      The hardware probably has just one edge detection circuit.

    • @marknn3
      @marknn3 5 ปีที่แล้ว +1

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

    • @donreid358
      @donreid358 5 ปีที่แล้ว +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 5 ปีที่แล้ว +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.

  • @OneBiOzZ
    @OneBiOzZ 5 ปีที่แล้ว +3

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

  • @bostedtap8399
    @bostedtap8399 5 ปีที่แล้ว +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 5 ปีที่แล้ว +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.

  • @kensmith5694
    @kensmith5694 5 ปีที่แล้ว +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.

  • @nikmilosevic1696
    @nikmilosevic1696 5 ปีที่แล้ว +3

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

  • @Tool-Meister
    @Tool-Meister 4 ปีที่แล้ว

    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.

  • @RemcoStoutjesdijk
    @RemcoStoutjesdijk 5 ปีที่แล้ว +2

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

    • @Basement-Science
      @Basement-Science 5 ปีที่แล้ว

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

  • @vega1287
    @vega1287 5 ปีที่แล้ว +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

  • @KillerSpud
    @KillerSpud 5 ปีที่แล้ว +1

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

  • @samuelschwager
    @samuelschwager 5 ปีที่แล้ว

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

  • @PixelSchnitzel
    @PixelSchnitzel 5 ปีที่แล้ว

    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.

  • @FindLiberty
    @FindLiberty 5 ปีที่แล้ว +4

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

    • @EEVblog
      @EEVblog  5 ปีที่แล้ว +1

      I was an ALT man myself

  • @uwezimmermann5427
    @uwezimmermann5427 5 ปีที่แล้ว +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  5 ปีที่แล้ว

      Yep, potential trap for young players.

  • @UpcycleElectronics
    @UpcycleElectronics 5 ปีที่แล้ว +1

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

  • @seanmangan2769
    @seanmangan2769 5 ปีที่แล้ว +1

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

  • @fixituntilitsbroke2263
    @fixituntilitsbroke2263 5 ปีที่แล้ว

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

  • @ryanzheng8735
    @ryanzheng8735 5 ปีที่แล้ว

    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.

  • @portblock
    @portblock 5 ปีที่แล้ว

    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?

  • @pausmth
    @pausmth ปีที่แล้ว

    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...

  • @cuteswan
    @cuteswan 5 ปีที่แล้ว +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 5 ปีที่แล้ว +1

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

    • @cuteswan
      @cuteswan 5 ปีที่แล้ว

      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.)

  • @wolfgangschweiger9557
    @wolfgangschweiger9557 5 ปีที่แล้ว +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

  • @brentdennard6722
    @brentdennard6722 5 ปีที่แล้ว +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...

  • @Sigmaxt
    @Sigmaxt 2 ปีที่แล้ว

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

  • @tablatronix
    @tablatronix 5 ปีที่แล้ว

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

  • @blockbertus
    @blockbertus 5 ปีที่แล้ว

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

  • @ovalwingnut
    @ovalwingnut 5 ปีที่แล้ว

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

  • @WillArtie
    @WillArtie 5 ปีที่แล้ว

    Thanks DJ. Love a good scope tute.

  • @laad
    @laad 5 ปีที่แล้ว

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

  • @chrismorley5393
    @chrismorley5393 5 ปีที่แล้ว

    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...?

  • @kevincozens6837
    @kevincozens6837 5 ปีที่แล้ว

    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.

  • @Ziferten
    @Ziferten 5 ปีที่แล้ว

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

  • @flymypg
    @flymypg 5 ปีที่แล้ว

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

    • @EEVblog
      @EEVblog  5 ปีที่แล้ว +2

      Nope

    • @ferrumignis
      @ferrumignis 5 ปีที่แล้ว +1

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

  • @Matthias051
    @Matthias051 5 ปีที่แล้ว

    Thank you

  • @tocsa120ls
    @tocsa120ls 5 ปีที่แล้ว +1

    Reasons to keep my 453A...

  • @vencibushy
    @vencibushy 5 ปีที่แล้ว +1

    Or use a very old dual beam oscilloscope.

  • @jrb_sland5066
    @jrb_sland5066 5 ปีที่แล้ว +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.

  • @blancsteve4819
    @blancsteve4819 5 ปีที่แล้ว +2

    Winner, winner bleached chicken dinner.

  • @philpearce3248
    @philpearce3248 5 ปีที่แล้ว +1

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

  • @electronic7979
    @electronic7979 5 ปีที่แล้ว +1

    👍

  • @michaelhawthorne8696
    @michaelhawthorne8696 5 ปีที่แล้ว +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 5 ปีที่แล้ว

      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

  • @oly463
    @oly463 5 ปีที่แล้ว

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

  • @donreid358
    @donreid358 5 ปีที่แล้ว

    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.

  • @kwastek
    @kwastek 5 ปีที่แล้ว

    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.

  • @matsv201
    @matsv201 5 ปีที่แล้ว

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

  • @trickyrat483
    @trickyrat483 5 ปีที่แล้ว +3

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

  • @danthemancasey
    @danthemancasey 5 ปีที่แล้ว +1

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

  • @Digital-Dan
    @Digital-Dan 5 ปีที่แล้ว

    That's klooooooge, please!

  • @chilljlt
    @chilljlt 5 ปีที่แล้ว

    No! We want more oscilloscope videos!

  • @CoolDudeClem
    @CoolDudeClem 5 ปีที่แล้ว +1

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

    • @iroll
      @iroll 5 ปีที่แล้ว

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

  • @Krmpfpks
    @Krmpfpks 5 ปีที่แล้ว

    ESSENTIAL.... for niche applications ;-)

  • @michaelhawthorne8696
    @michaelhawthorne8696 5 ปีที่แล้ว

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

  • @dieboodskapper
    @dieboodskapper 5 ปีที่แล้ว

    OK TOTALLY TRIGGERED!!!

  • @slindenau
    @slindenau 5 ปีที่แล้ว

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

  • @brazeiar9672
    @brazeiar9672 5 ปีที่แล้ว +2

    We need more teardowns tbh

    • @EEVblog
      @EEVblog  5 ปีที่แล้ว +5

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

    • @amirb715
      @amirb715 5 ปีที่แล้ว +4

      @@EEVblog no!

    • @brazeiar9672
      @brazeiar9672 5 ปีที่แล้ว

      @@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.

  • @custodiogomesbarcellos4972
    @custodiogomesbarcellos4972 5 ปีที่แล้ว

    Cool

  • @DreitTheDarkDragon
    @DreitTheDarkDragon 5 ปีที่แล้ว

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

  • @pinfarmer
    @pinfarmer 5 ปีที่แล้ว

    First times infinity

  • @6teeth318-w5k
    @6teeth318-w5k ปีที่แล้ว

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

  • @FuzzyTronics
    @FuzzyTronics 5 ปีที่แล้ว

    Just when I thought it was time to unsubscribe

  • @rollyaponte2281
    @rollyaponte2281 5 ปีที่แล้ว

    First