element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • 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 & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
    About the element14 Community
  • 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
      •  Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      •  Vietnam
      • 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
Experts, Learning and Guidance
  • Technologies
  • More
Experts, Learning and Guidance
Ask an Expert Forum Remote Control of MP730027 Digital Multimeter
  • Blog
  • Forum
  • Documents
  • Leaderboard
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Experts, Learning and Guidance to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Not Answered
  • Replies 7 replies
  • Subscribers 339 subscribers
  • Views 2973 views
  • Users 0 members are here
Related
See a helpful answer?

Be sure to click 'more' and select 'suggest as answer'!

If you're the thread creator, be sure to click 'more' then 'Verify as Answer'!

Remote Control of MP730027 Digital Multimeter

peter
peter over 3 years ago

I recently bought the Multicomp Pro MP730027 benchtop Digital Multimeter and am having difficulty controlling the instrument using the USB or LAN interface and the DMMEasyControl software which came with the instrument. After launching the app and clicking Control > Connect, the program hangs for about ten seconds and then closes. I have tried it with both USB and LAN interfaces and the same thing happens. It has never, as far as I recall, worked with the USB interface, but occasionally, in the early days with the LAN interface.
I have not (for various reasons) tried to use remote control for a month or more. Two things since then which may/may not be significant are 1. I recently upgraded to Windows 11. 2. I bought a RS Pro programmable power supply which uses a similar app (EasyPower) and both instruments are seen by Device Manager as 'USB Test and Measurement Device (IVI). I can control the RS Pro power supply via USB, but not via LAN. Any ideas?

  • Sign in to reply
  • Cancel

Top Replies

  • michaelkellett
    michaelkellett over 3 years ago +2
    It is a problem with low cost programmable instruments that the suplliers often do not provide easily accesible and adequate information to use them. It can also be a problem with high cost instruments…
  • KennyMillar
    KennyMillar over 3 years ago +2
    Pretty certain that model is compatible with the Owon desktop multimeter, they have some software downloads at: www.owon.com.hk/.../index.asp
  • baldengineer
    baldengineer over 3 years ago +2
    I have the MP730028, which has the same backend. On mine, LAN never connects. The UI shows the cable is connected, but the lights never flash. I have tried with different cables and have verified the cables…
Parents
  • baldengineer
    0 baldengineer over 3 years ago

    I have the MP730028, which has the same backend. On mine, LAN never connects. The UI shows the cable is connected, but the lights never flash. I have tried with different cables and have verified the cables work with other devices.

    USB, does work, but I have only been using it with VISA. I haven't tried to use it with either the IVI driver or the DMMEasyControl software.

    On other Multicomp stuff, I have had to use Zadig to change the USB driver to libusb-win32 for their software to work. But I'm hesitant to suggest that because sometimes that is difficult to undo if it doesn't work.

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • KennyMillar
    0 KennyMillar over 3 years ago in reply to baldengineer

    Oooh I can't help myself here....

    [RANT MODE ON]

    You see, USB, it's a well defined standard. On almost any other operating system in the world there is little need for USB 'drivers' because every USB device identifies itself as a class of device, and describes all it's in- and out- points in great detail. It describes the direction and content of the data, whether it's polled or interrupt, what the data means, how it's interpreted, it's length etc etc etc. Almost every conceivable class of device is covered by the USB specification.

    The operating system should just go "Yeah, you're a <Whatever> CLASS device" and just work, by properly implementing that class. 

    However Windows - for some unknown reason - mainly uses the VID and PID to decide what driver to load... even for well supported USB classes. It's madness and should be banned.

    Even if you invent a new device which doesn't fit into any existing class, it still fits into well known classes of how the data is actually transferred, and the USB Device block, transferred on connection, describes all of this. So you STILL shouldn't need a driver. You could even do it all in user-space. 

    [RANT MODE OFF]

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • KennyMillar
    0 KennyMillar over 3 years ago in reply to baldengineer

    Oooh I can't help myself here....

    [RANT MODE ON]

    You see, USB, it's a well defined standard. On almost any other operating system in the world there is little need for USB 'drivers' because every USB device identifies itself as a class of device, and describes all it's in- and out- points in great detail. It describes the direction and content of the data, whether it's polled or interrupt, what the data means, how it's interpreted, it's length etc etc etc. Almost every conceivable class of device is covered by the USB specification.

    The operating system should just go "Yeah, you're a <Whatever> CLASS device" and just work, by properly implementing that class. 

    However Windows - for some unknown reason - mainly uses the VID and PID to decide what driver to load... even for well supported USB classes. It's madness and should be banned.

    Even if you invent a new device which doesn't fit into any existing class, it still fits into well known classes of how the data is actually transferred, and the USB Device block, transferred on connection, describes all of this. So you STILL shouldn't need a driver. You could even do it all in user-space. 

    [RANT MODE OFF]

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Children
  • baldengineer
    0 baldengineer over 3 years ago in reply to KennyMillar

    Well. Even in this case, you aren’t adding a driver.

     Zadig is, effectively, creating an INF that points to the already existing libusb driver.

    Which, you can make Windows do, but it’s more steps. Zadig automates it.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
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 © 2026 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.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube