Difference between revisions of "QtDMM"

From Noah.org
Jump to navigationJump to search
m
Line 3: Line 3:
 
QtDMM is a great GUI interface to Digital MultiMeters that have a computer interface. It has a few bugs, but these can be worked around.
 
QtDMM is a great GUI interface to Digital MultiMeters that have a computer interface. It has a few bugs, but these can be worked around.
  
=== QtDMM Bugs ===
+
== Build ==
  
It is very important that you build it correctly from source. You need to turn off the FORTIFY flag checking in gcc. See [https://wiki.ubuntu.com/CompilerFlags#FORTIFY%20return%20value%20checking Compiler Flags FORTIFY]
+
It is very important that you build it correctly from source. You need to turn off the FORTIFY flag checking in gcc. See [https://wiki.ubuntu.com/CompilerFlags#FORTIFY%20return%20value%20checking Compiler Flags FORTIFY].
<pre>
 
./configure BASECFLAGS=-U_FORTIFY_SOURCE
 
make
 
</pre>
 
  
Import and export of test data does not work perfectly. You can export the data, but it screws up the recorded data by saving every sample with the same date-time stamp -- and without fractions of a second which is critical since you can sample every 100 milliseconds. This is not so much of a problem since you at least know the time between samples which is good enough for graphing.
+
You will also need qt3-dev-tools. Unpack the tarball. '''Set the QTDIR environment variable!''' The following is for building under Ubuntu, but other distros are probably not much different:
 
 
 
 
To build it you need the qt3-dev libraries. Unpack the tarball. '''Set the QTDIR environment variable!''' The following is for building under Ubuntu, but other distros are probably not much different:
 
 
<pre>
 
<pre>
 
aptitude install qt3-dev-tools
 
aptitude install qt3-dev-tools
Line 22: Line 15:
  
 
I use a RadioShack Model #22-812. I'm not normally a fan of anything from RadioShack, but this meter is very inexpensive and it has a very useful RS-232 serial interface.
 
I use a RadioShack Model #22-812. I'm not normally a fan of anything from RadioShack, but this meter is very inexpensive and it has a very useful RS-232 serial interface.
 +
 +
== import and export bug ==
 +
 +
Import and export of test data does not work perfectly. You can export the data, but it screws up the recorded data by saving every sample with the same date-time stamp -- and without fractions of a second which is critical since you can sample every 100 milliseconds. This is not so much of a problem since you at least know the time between samples which is good enough for graphing.
  
 
== ZMeter alternative ==
 
== ZMeter alternative ==
  
 
An alternative to QtDMM is ZMeter.
 
An alternative to QtDMM is ZMeter.

Revision as of 01:58, 4 March 2010


QtDMM is a great GUI interface to Digital MultiMeters that have a computer interface. It has a few bugs, but these can be worked around.

Build

It is very important that you build it correctly from source. You need to turn off the FORTIFY flag checking in gcc. See Compiler Flags FORTIFY.

You will also need qt3-dev-tools. Unpack the tarball. Set the QTDIR environment variable! The following is for building under Ubuntu, but other distros are probably not much different:

aptitude install qt3-dev-tools
QTDIR=/usr/share/qt3/ ./configure BASECFLAGS=-U_FORTIFY_SOURCE
make

I use a RadioShack Model #22-812. I'm not normally a fan of anything from RadioShack, but this meter is very inexpensive and it has a very useful RS-232 serial interface.

import and export bug

Import and export of test data does not work perfectly. You can export the data, but it screws up the recorded data by saving every sample with the same date-time stamp -- and without fractions of a second which is critical since you can sample every 100 milliseconds. This is not so much of a problem since you at least know the time between samples which is good enough for graphing.

ZMeter alternative

An alternative to QtDMM is ZMeter.