Skip to main content

Data logger for JT-UM120, FNIRSI FNB48, FNIRSI C1 and FNIRSI FNB58 USB power meters

Project description

Pylint

Fork of fnirsi-usb-power-data-logger

Data logger for JT-UM120, FNIRSI FNB48, FNIRSI C1 and FNIRSI FNB58 USB power meters

FNIRSI FNB48, FNIRSI C1, FNIRSI FNB58 are cheap and relatively good USB power meters, supporting various charging protocols, voltages, and additionally PC communication.

This is a result of reverse engineering of FNB-48 protocol over lazy Saturday.

Requirements

Linux. (It might work on non-linux systems too, but untested)

Python 3.12 or newer.

Running under normal user (non-root)

Above examples showed running with sudo (root user). This is because these USB devices are of HID type, and not standard serial devices. You can manually change permissions of them with something similar to sudo chown $USER /dev/bus/usb/001/030, or better yet, install udev rules as described below.

Create USB group:

sudo addgroup usbmeter

Install udev rules:

$ sudo install --mode=0644 --target-directory=/etc/udev/rules.d/ udev/90-usb-power-meter.rules
$ sudo udevadm trigger

This should make fnirsi_logger.py work for users of the usbmeter group.

Accuracy / resolution

Time - few ms. By default samples every 10ms (technically 4 samples every 40ms). Time is printed as UNIX epoch in seconds, with 1ms resolution.

Voltage, current - all printed decimal digits. 0.00001 unit.

Temperature - device resolution is 0.1°C, but a low pass filter is used to smooth it a bit, and output with 0.01°C. Less than a second delay expected. As far as I can tell negative values for temperature are not supported, it will report close to 0°C. Temperatures in range 0–70°C were tested.

Energy and capacity - all printed decimal digits. Note: Device does not send energy and capacity. Values are integrated (from power and current) on the host instead. They do start at zero at program startup.

Note: It is expected voltage are positive, if not Energy and Capacity might go backwards!

Note: Power is not provided in the output. Just multiply voltage and current values to get power in Watts.

Supported devices

FNIRSI FNB48 and FNIRSI C1 are known to work. It will use first that it finds.

FNIRSI FNB58 is also known to work, thanks to work of @didim99.

FNIRSI FNB48S should also work.

JT-UM120 are known to work.

Make sure to have relatively recent firmware. My FNIRSI C-1 came with very old firmware (0.20) that did not work out of the box, but upgrading to the latest firmware (0.70) made everything work with exactly same code.

Built-in storage

Some meters do have small FAT partition that a metter can log to, and then read back on a computer as a simple storage device. A format is simple binary format called CFN. There is a tool at https://github.com/didim99/usbmeter-utils to read it and convert to CSV.

Data analysis

You can do whatever you want, it just simple text data that can be feed to file or a pipe. Import to program, spreadsheet, Python, R, Octave, gnuplot, export to InfluxDB, Prometheus, Kafka, MQTT. For quick and dirty work, one can use awk, sort, or my command-line program kolumny. There are no limits.

Limitation

All values seems to be correct. No extra calibration curves are used, as device sends values that already have device calibration applied.

Program uses fixed sampling rate of 100 samples per second (highest avilable). If you want lower sampling rate, just skip some output lines. In gnuplot to speed up very long (days) logs, use every 10 for example, to skip lines automatically. If you really need lower sample rate, open a GitHub Issue about it. For now you can use something like ./fnirsi_logger.py | awk 'BEGIN {next_t=0.0;} { if ($1 >= next_t) { print $0; next_t = $1 + 1.0;} }' to limit output to 1 sample per second.

TODO

FNB48: Sometimes on program exit, the power meter display gets frozen.

Note: This is now partially fixed (when we exit, we make sure to read all the data before actually exiting - this way power meter does not fill up its internal FIFO buffers, and block forever). Partially, because sometimes meter still gets stuck. Waiting a bit, and reruning script few times, sometimes bring the device back to life. If everything fails, replug the device to reinitialize it.

It might make sense to add triggers (configured via command line options): when to start outputing data (i.e. when current goes from low to above 20mA), and when to stop outputing data and exit (i.e. when current goes back to below 10mA for 60 consequtive seconds). It is easy to add, I just do not have much use for it personally.

Power Delivery type detection does not work.

Firmware update still requires Windows. Running in qemu / virt-manager, and doing USB redirect works for this purposes. Unlikely to be implemented.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

usb_multimeter-2.0.14.tar.gz (24.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

usb_multimeter-2.0.14-py3-none-any.whl (10.1 kB view details)

Uploaded Python 3

File details

Details for the file usb_multimeter-2.0.14.tar.gz.

File metadata

  • Download URL: usb_multimeter-2.0.14.tar.gz
  • Upload date:
  • Size: 24.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for usb_multimeter-2.0.14.tar.gz
Algorithm Hash digest
SHA256 c2ab78eddd388f9623cfdf2201c1535bbab6a393cbcba54724df79d87816c6df
MD5 1d772373405f86d73152ac66e5fc634c
BLAKE2b-256 2b2c3dfa63664790f192ec87f360208a96bb1d5860d283a326fe7a06f404e38f

See more details on using hashes here.

File details

Details for the file usb_multimeter-2.0.14-py3-none-any.whl.

File metadata

File hashes

Hashes for usb_multimeter-2.0.14-py3-none-any.whl
Algorithm Hash digest
SHA256 75e183671e42f48ac8a86c0587f6388e252d1e5201c8690c44205d28a65ca07b
MD5 1b12646ab0fa90ad2b855cb78e85bfe2
BLAKE2b-256 d5a041e4ddeddbf7bfc1c04d9b1b5a35ae63cadd0f426e340bf3d827d5b02039

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page