![]() |
OLED display for Snakeoil Raspberry Pi and MPD - Printable Version +- Snakeoil Forums (https://forums.snakeoil-os.net) +-- Forum: Snakeoil Resource (https://forums.snakeoil-os.net/Forum-Snakeoil-Resource) +--- Forum: Walkthroughs (https://forums.snakeoil-os.net/Forum-Walkthroughs) +--- Thread: OLED display for Snakeoil Raspberry Pi and MPD (/Thread-OLED-display-for-Snakeoil-Raspberry-Pi-and-MPD) |
OLED display for Snakeoil Raspberry Pi and MPD - Bromf - 19-Oct-2018 This is a recipe for MPD.... (if you use LMS then you will have to research the LMS forums ???...) (I am assuming you have a usage knowledge of the Linux editor 'nano') We are using a simple OLED SH1106 I2C 128x64 screen such as this... https://www.ebay.com/itm/1-3-White-OLED-LCD-4PIN-Display-Module-IIC-I2C-Interface-128x64-for-Arduino/401395109681?hash=item5d75034f31:g:WH4AAOSwVGFZqEDx vcc=3.3v Gnd, SDA and SCL as per your Raspberry Pi's GPIO Install Snakeoil to your Raspberry pi and bring up the web app.. https://www.snakeoil-os.net/forums/Thread-Snakeoil-ISO-1-1-0-Blind-Testing https://www.snakeoil-os.net/Manual/configuration/navigating-the-web-interface Change password in web app>'System' page. Log into Snakeoil via ssh. = pi@<ip_Address> password = <whatever_you_used_above> Then run... Code: sudo raspi-config and action these options... #5=Interface options>P5 I2C and activate i2c then... #7=Advance options>A1 Expand filesystem Finish...and reboot. ssh in again and install Adrians Oled...(sourced from here...https://github.com/antiprism/mpd_oled) Code: sudo apt-get update and... Code: cd ~ Code: dtparam=i2c_arm_baudrate=400000 Code: sudo nano /etc/modules Now... Code: sudo apt-get install python-smbus Code: sudo dpkg-reconfigure tzdata Important..(use next whichever version of mpd you are using as your player...I am using mpd-v20.) Code: sudo nano /var/www/players/mpd-v20/mpd.conf.template Code: audio_output { mpd_oled install..... Code: sudo apt install build-essential git-core autoconf make libtool libi2c-dev i2c-tools lm-sensors libcurl4-openssl-dev libmpdclient-dev libjsoncpp-dev Code: git clone https://github.com/antiprism/mpd_oled ( The OLED type MUST be specified with -o from the following list: 1 - Adafruit SPI 128x64, 3 - Adafruit I2C 128x64, 4 - Seeed I2C 128x64, 6 - SH1106 I2C 128x64.) (test for SH1106 I2C 128x64) Code: sudo ./mpd_oled -o 6 -b 10 -g 1 -f 20 My preferred for SH1106 I2C 128x64(changes scroll rate and 12 Hr clock) Code: sudo ./mpd_oled -o 6 -a 3c -r 24 -s 20.0,2.0,3.0,2.0 -C 3 Stop the display with..Ctrl+c (you can edit the configuration here otherwise accept the defaults...) Code: cd mpd_oled then if all works finish by doing... Code: sudo bash install.sh RE: OLED display for Snakeoil Raspberry Pi and MPD - Bromf - 18-Feb-2019 After a Firmware update the spectrum analyser portion of the display no longer works as the mpd.conf.template is overwritten. Fix it by rerunning the Fifo patch from the install as follows..... ssh to your Pi and... Important..(use next whichever version of mpd you are using as your player...I am using mpd-v20.) Code: sudo nano /var/www/players/mpd-v20/mpd.conf.template add the following lines to the end of the file... (this is for the oled data and will not affect your selected audio output details) Code: audio_output { Reboot... RE: OLED display for Snakeoil Raspberry Pi and MPD - agent_kith - 12-Apr-2019 Hi Bromf, To make this easier, I'm going to add a new option in MPD configuration (from 1.1.4 onwards). Simply add the word to the options box, and this audio output device will be added on restart: Code: mpd_oled In the future I'll also package the binaries as a installable module to make it even easier, but will have to leave that till later. RE: OLED display for Snakeoil Raspberry Pi and MPD - vinaymoturi - 07-Oct-2023 (12-Apr-2019, 08:29 AM)agent_kith Wrote: Hi Bromf, can we use 20x4 LCD screen with above code display model is hd44780_i2c RE: OLED display for Snakeoil Raspberry Pi and MPD - vinaymoturi - 07-Oct-2023 sudo apt install git then clone the pydPiper repository as usual: cd /home/pi git clone https://github.com/dhrone/pydPiper cd pydPiper Then for the docker I used the following: sudo curl -fsSL https://get.docker.com -o get-docker.sh sudo sh get-docker.sh Then configure PydPiper sudo python configure.py Edit your pages file Test the install: sudo /usr/bin/docker run --network=host --privileged -ti -v /var/log:/var/log:rw -v /home/pi/pydPiper:/app:rw dhrone/pydpiper:v0.31-alpha /bin/bash python pydPiper.py To finish set it to start automatically sudo cp pydpiper.service /etc/systemd/system sudo systemctl enable pydpiper sudo systemctl start pydpiper Followed this guide (actually for Moodeaudio) managed to get display. But, unable to start the service automatically after reboot. RE: OLED display for Snakeoil Raspberry Pi and MPD - vinaymoturi - 18-Oct-2023 sudo sh get-docker.sh at this stage it saying to install docker in rootless mode how to do it? RE: OLED display for Snakeoil Raspberry Pi and MPD - vinaymoturi - 07-Nov-2023 (18-Oct-2023, 07:21 PM)vinaymoturi Wrote: sudo sh get-docker.sh Plz help RE: OLED display for Snakeoil Raspberry Pi and MPD - agent_kith - 11-Nov-2023 (07-Nov-2023, 02:13 PM)vinaymoturi Wrote: Plz helpFollow this page? Link RE: OLED display for Snakeoil Raspberry Pi and MPD - vinaymoturi - 13-Sep-2024 (12-Apr-2019, 08:29 AM)agent_kith Wrote: is this implemented(mpd_oled in options box). i tried but it didnt worked. |