mrwunderbar666 / rpi-vumonitor-python

Using Audio VU Meters to monitor system activity on the Raspberry Pi

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Description

Using Audio VU Meters to visualize CPU and Network usage of your Raspberry Pi.

A collection of python scripts that enable different methods of driving analog VU Meters from your Raspberry Pi GPIOs

Requirements

  • RPI.GPIO
  • psutil
  • Wiring Pi
  • MCP4922 Driver
  • MCP4725 Driver

4 Different Methods

Pulse Width Modulation and standard RPi.GPIO Library

Software PWM

In this version we use software PWM to pulse the VU Meters. I noticed that this method creates a lot of jitter and is quite inaccurate. Also the resolution is quite low, as my VU Meters already are at maximum level with a PWM Duty Cycle of 10 @ 200 Hz.

But this is also the most simple and straightforward method.

Requires:

  • RPi.GPIO
  • psutil (monitoring system)

Pulse Width Modulation and WiringPi GPIO Library

Hardware PWM

In this version we use hardware PWM to pulse the VU Meters. The wiringpi library supports hardware PWM, unlike the RPi.GPIO library.

This method has only little jitter and is more accurate compared to the software PWM version. Resolution is also better compared to the software PWM. I can get around 200 steps of duty cycle until the VU Meter is at its peak.

Requires:

  • Wiring Pi
  • psutil (monitoring system)

Dual Channel Digital to Analog Converter with custom Library

Using MCP4922 DAC

In this version we use an MCP4922 DAC to apply a constant voltage to two VU Meters. The MCP4922 is a Digital to Analog Converter with 2 Channels and 12 bit resolution.

It supports SPI, which is a bit painful to use at the beginning.

This method is very clean, has no jitter and highly accurate. The resolution is effectively at around 600 steps, because the DAC can adjust the voltage in 1mV steps.

I opted for this as my permanent solution

Requires:

Single Channel Digital to Analog Converter with Adafruit Library

Using MCP4725 DAC

In this version we use an MCP4725 DAC to apply a constant voltage to one VU Meter. The MCP4725 is a Digital to Analog Converter with 1 Channel and 12 bit resolution. It supports I2C, which is nice and easy to use.

Adafruit offers a breakout version and supplies some libraries for it.

This method is very clean, has no jitter and highly accurate. The resolution is effectively at around 600 steps, because the DAC can adjust the voltage in 1mV steps.

But has only one channel. So it is not a good solution if you want to drive several VU Meters at once. Requires:

About

Using Audio VU Meters to monitor system activity on the Raspberry Pi

License:MIT License


Languages

Language:Python 100.0%