@Saiyato
I did the folowing to install your plugin:
[code]$ sudo i2cdetect -y 1
$ wget https://github.com/Saiyato/volumio-hd44780-plugin/raw/master/volumio-hd44780-plugin.zip
$ mkdir volumio-hd44780-plugin
$ miniunzip volumio-hd44780-plugin.zip -d volumio-hd44780-plugin
$ cd volumio-hd44780-plugin
$ sudo apt-get update
$ sudo apt-get install apt-utils
$ sudo apt-get install build-essential
$ npm install
$ volumio plugin install[/code]
The plugin is installed. Welcome message is shown on display, but the MPD info is not shown if playing. Enable MPCLCD is set to On.
If I try to start mpdlcd I get the following error:
Traceback (most recent call last):
File “/usr/local/bin/mpdlcd”, line 7, in
from mpdlcd import cli
File “/usr/local/lib/python2.7/dist-packages/mpdlcd/cli.py”, line 5, in
import configparser
ImportError: No module named configparser
Can you tell me how to corect this error? Many thanks for this great plugin.
SOLVED: Had to install Python 3:
$ sudo apt install python3
$ sudo apt install python3-pip
$ sudo apt install python-mpd
$ sudo pip3 install mpdlcd