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.13.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.13-py3-none-any.whl (10.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: usb_multimeter-2.0.13.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.13.tar.gz
Algorithm Hash digest
SHA256 54879873e15ac3f16cf3fc4e455d6167a50ccea255d202c36701e45188849cae
MD5 c28149065a52695f669bccf48e4ac671
BLAKE2b-256 2fc81af05a0c772fa339a68cb1020d7b438b17a90cf7c129c76d78a8b9068aea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for usb_multimeter-2.0.13-py3-none-any.whl
Algorithm Hash digest
SHA256 1c5d2e93b1c56ea977c129b9db814f40289f3f39c05701142b2ca66334b55bf2
MD5 943387b92fa94362b377116f4b0462df
BLAKE2b-256 42da0e5adabb77a4cc6b481d113b04957c8d51d36dba151b99648649200f0134

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