BENNING MM 12

From sigrok
Revision as of 12:36, 6 November 2020 by Cymaphore (talk | contribs) (Review and Test section)
Jump to navigation Jump to search
BENNING MM 12
Benning MM 12 - 01 - Front Sleeve.png
Status in progress
Source code serial-dmm
Counts 40000
IEC 61010-1 CAT III (1000V) / CAT IV (600V)
Connectivity Infrared (USB), Bluetooth LE
Measurements voltage, current, frequency, duty cycle, resistance, continuity, conductance, diode, capacitance, temperature
Features autorange, data hold, min/max/avg, crest, backlight, true-rms, dBm, dB, peak hold
Website benning.de

The BENNING MM 12 is a 40000 counts, CAT IV (600V) / CAT III (1000V) dual display handheld digital multimeter with USB and Bluetooth LE connectivity.

It is based on the APPA 506B, See also: APPA Multimeters.

A driver supporting these devices including the MM 12 has been created and will be included in mainline sigrok once it passes acception (more details in pull request #99).

Hardware

Photos and Teardown

Review and Test

Usage of rechargable NiMH batteries

The device works quite well with rechargable batteries. Voltage boundaries are well selected to suit the needs of both Alkaline and NiMH cells. For NiMH the reported battery level is of course to low.

Battery indication

  • FULL: >1.415 V/cell ... 5.66 V overall
  • HALF: >1.290 V/cell ... 5.16 V overall
  • LOW: >1.165 V/cell ... 4.66 V overall
  • WARN: >1.015 V/cell ... 4.06 V overall

The cut-off voltage (device turns off with "Battery" error) of about 1V/cell is well suited for NiMH Batteries.

Examples: Establish data connection between sigrok and MM 12

Important: Driver is not (yet) part of mainline sigrok - see this repository in github if you want to use it already.

Serial/USB

Assuming the meter is turned on, plugged in and the usb-serial driver is loadad and up (should happen automatically). /dev/ttyUSB0 is used as an example.

List devices, if unsure what the serial port is:

 # sigrok-cli --list-serial
 /dev/ttyUSB0  CP2102 USB to UART Bridge Controller - 2020y000231

Scan for MM 12 with USB/Serial connection:

 $ sigrok-cli -d benning-dmm:conn=/dev/ttyUSB0 --scan

Show readings from connected meter:

 $ sigrok-cli -d benning-dmm:conn=/dev/ttyUSB0 --continuous

Open in SmuView:

 $ smuview --driver benning-dmm:conn=/dev/ttyUSB0

Bluetooth LE

Assuming the meter is turned on and bluetooth activated on the meter and the PC. Important: Your Bluetooth-Controller must support BLE.

Scan for BLE devices:

 # sudo sigrok-cli --list-serial
 bt/appa-b/18-7A-93-BF-47-62   BENNING MM12 (BLE)

If your OS / UI supports it, you can also use the Bluetooth scanning capability from the system tray and pick the MAC address from the details there.

"18:7A:93:BF:47:62" acts as an example for the device address you will find. For sigrok the ":" must be replaced by "-" for now. That device address is used for the following examples, just replace it by the address of your own meter.

The full connection string then would look like this, as seen in the scanning result: bt/appa-b/18-7A-93-BF-47-62

Scan for MM 12 with BLE connection:

 $ sigrok-cli -d benning-dmm:conn=bt/appa-b/18-7A-93-BF-47-62 --scan

Show readings from connected meter:

 $ sigrok-cli -d benning-dmm:conn=bt/appa-b/18-7A-93-BF-47-62 --continuous

Open in SmuView:

 $ smuview --driver benning-dmm:conn=bt/appa-b/18-7A-93-BF-47-62

Protocol

The protocol on Serial and BLE is the same like for most of the APPA based models.

Resources