element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Test & Tools
  • Technologies
  • More
Test & Tools
Blog Keithley DMM6500: Trigger from External Trigger Input
  • Blog
  • Forum
  • Documents
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Test & Tools to participate - click to join for free!
  • Share
  • More
  • Cancel
Group Actions
  • Group RSS
  • More
  • Cancel
Engagement
  • Author Author: Jan Cumps
  • Date Created: 25 Jan 2019 5:14 PM Date Created
  • Views 4733 views
  • Likes 8 likes
  • Comments 3 comments
  • RoadTest
  • dmm6500
  • rt
  • keithley
  • labview
Related
Recommended

Keithley DMM6500: Trigger from External Trigger Input

Jan Cumps
Jan Cumps
25 Jan 2019

I'm road testing the  Keithley Bench Digital Multimeter DMM6500.

In this post, I investigate how to use the external trigger to start a measurement.

image

In this post, the setup is manual. In the next post I'll use LabVIEW to automate the process.

 

 

Goal: I want to measure the voltage on a microcontroller GPIO pin just after it is set to high.

 

External Trigger

 

The DMM6500 has an external trigger input at the rear of the instrument.

 

image

 

It's a BNC connector that works on TTL levels.

image

 

Anything above 2 V is considered high. 0.8 V and lower is low.

The instrument can use this input to start activities. It can react on rising edge, falling edge or both.

The way to react on the trigger is via a trigger model. In this exercise, the model should wait for trigger, than measure.

 

I'm going to connect it to a GPIO output of a microcontroller. It's a MAXIM MAX32660, and I've configured it's GPIO to 3.3V, compatible with the TTL high input.

Further on in the post I'll show how to make the meter wait, and then take one measurement on that same GPIO when the trigger trips.

I'm using the LED output of the MAX32660  evaluation board, and want to measure the voltage on that pin when it's high.

 

Connections

 

I used a BNC to banana connector to connect the MAX32660 GPIO pin to the meter.

image

I'm also connecting the meter input to the LED pin of the MAX32660 evaluation board, that's P0_13, because I want to measure its voltage when put high.

(side note: this pin doesn't drive the LED directly. It drives a FET. But that's not relevant for this exercise)

 

image

 

Enable External Triggering

 

When you switch on the meter, it's in DC Volt mode. That's the mode I want to use, so we can leave it default.

To define the trigger model:

  • navigate to Menu -> Trigger -> Configure.
  • Press Insert After -> Wait -> Event 1 -> External In Trigger
  • Press the * button next to Event 1 -> Rising
  • Press Insert After -> Action -> Measure/Digitize

 

image

 

  • Press Home

The trigger model is now configured. To enable it, press the Trigger key for 3 seconds.

  • Press Initiate Trigger Model

 

The meter will now wait for the external trigger to fire on a rising edge. It will make a single measurement and stop.

Pressing the trigger button repeats the flow.

 

If you want to make multiple measurements, you can use a loop:

image

 

After the measuements (10 in this case) you can use the graph and stats functions to check measurements.

 

As promised, in the next blog I'll automate this in LabView.

 

image

Related Blog
Keithley Bench Digital Multimeter - Review
Software Control Options Pt 1 - TSP Script Builder, LabVIEW, Web Interface
TSP Script Example - Measure Power
How to Create a Bitmap for a Custom App
Verify a µCurrent Manually
Verify a µCurrent in an Automated Setup
Measure Amp-Hours of a microcontroller with a µCurrent
Trigger from External Trigger Input
Trigger from External Trigger Input in LabVIEW
Software Control Options Pt 2 - Test Commands with Communicator
App to Hold Measurements

Store Multiple Measurements Manually

Script Example - Externally Triggered Measurements
  • Sign in to reply

Top Comments

  • DAB
    DAB over 6 years ago +2
    Nice update Jan. DAB
  • Jan Cumps
    Jan Cumps over 6 years ago in reply to DAB +1
    Thanks, Don. I'm getting the hang of the meter. The advanced functions require some studying. That doesn't mean you can't get started right away with the instrument. The standard functions are easy and…
Parents
  • Jan Cumps
    Jan Cumps over 6 years ago

    Here's the post where the process is automated in LabVIEW: Keithley DMM6500: Trigger from External Trigger Input in LabVIEW

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
Comment
  • Jan Cumps
    Jan Cumps over 6 years ago

    Here's the post where the process is automated in LabVIEW: Keithley DMM6500: Trigger from External Trigger Input in LabVIEW

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube