How to attach a LCD 20x4 I2C to a Raspy A+ with Pi-DAC+

Started from the following post on raspberrypi.org by ‘arginine’ to display MPD information on a 20x4 LCD
https://www.raspberrypi.org/forums/viewtopic.php?f=32&t=76326&p=545076#p545076

Then there is a link to a github project named “Raspberry Pi LCD library for the widely used Hitachi HD44780 controller, written in Python”:
https://github.com/dbrgn/RPLCD

That library is useful only to connect the LCD pin2pin by 4 or 8 bit and I have the I2C interface…

So I googled for I2C and founded this link: http://www.recantha.co.uk/blog/?p=4849#comment-547431 with explanation on how to use
20×4 LCD character display on a RaspberryPi with I2C interface. This is a generic discussion and not focused on MPD but many
comments down… bingo! User ‘supra’ posted a link very focused on MPD and I2C: https://github.com/speendo/raspi-mpd-lcd
This is a project not very well documented, but with some help in forums and googling I finally obtained the necessary information
to show MPD info on my LCD!
Download the zip and put it in a local directory on your Raspberry. This will be the start source path for the whole project and the main.py will be used to test the MPD2LCD.

Now, the instructions step by step:

Enabling I2C in Raspbian - The I2C ports need to be enabled in Raspbian before they can be used.
Edit the modules file
[code]

sudo nano /etc/modules
[/code]
Add these lines:
i2c-bcm2708 i2c-dev
Exit and save the file
Now edit the modules blacklist file:
sudo nano /etc/modprobe.d/raspi-blacklist.conf
Add a ‘#’ character to this line so it commented out (ignore if your file is empty):
#blacklist i2c-bcm2708
Exit and save the file.
​Finally install the I2C utilities:
sudo apt-get install python-smbus i2c-tools
Enter sudo reboot to restart the pi and now the I2C pins will be available to use.

Checking for connected devices
At the command prompt type one of these depending on whether you are using the I2C0 or I2C1 port:
[code]

sudo i2cdetect -y 0
[/code]
or
sudo i2cdetect -y 1

Could be necessary to setup the I2C environment on your Raspberry. Instructions for Raspbian are here.
Create a folder for the project and change directory to it. To create one in your home folder:
[code]mkdir ~/myproject
cd ~/myproject[/code]
Install the Quick2Wire libraries and setup the environment.
[code]

git clone https://github.com/quick2wire/quick2wire-python-api.git
[/code]
The following two steps will have to be done every time you login:
export QUICK2WIRE_API_HOME=~/myproject/quick2wire-python-api ### ATTENTION: Replace myproject with your real directory ###
export PYTHONPATH=$PYTHONPATH:$QUICK2WIRE_API_HOME
To easily setup the environment every time without a login shell, put the two export lines above at the end of /etc/profile:
sudo nano /etc/rc.local

Install now the i2c libraries. Move into the directory you are going to create your python code and type:
[code]

git clone https://bitbucket.org/thinkbowl/i2clibraries.git
[/code]

The Think Bowl I2CLibraries require python3. If python3 is not installed, perform the following
[code]

sudo apt-get install python3
[/code]
Install the python setuptools
sudo apt-get install python3-setuptools

Install the python libraries to interface with MPD. The new version of python-mpd libraries is located on github and
it's not backward compatibles with the original python-mpd packages, but this isn't a problem:
[code]

git clone git://github.com/Mic92/python-mpd2.git
[/code]
Install it
python setup.py install

Adding the "pi" user to i2c group
[code]

sudo adduser pi i2c
[/code]

Finally, run the script to show info on LCD
[code]

python3 main.py
[/code]

To run the script automatically without opening any shell, put the above command into the rc.local below the previous two export commands
[code]

sudo nano /etc/rc.local
[/code]
it should contains the following lines:
# Start MPD 2 LCD export QUICK2WIRE_API_HOME=/home/pi/raspi-mpd-lcd/quick2wire-python-api export PYTHONPATH=$PYTHONPATH:$QUICK2WIRE_API_HOME (sleep 10; python3 /home/pi/raspi-mpd-lcd/main.py)&

Very interesting. Can you tell me what hardware (display) and connections you used?
regard