Moode Forum
[How to do instruction] 128x64 OLED with Song Status and Spectrum Display on Raspberry Pi - Printable Version

+- Moode Forum (https://moodeaudio.org/forum)
+-- Forum: moOde audio player (https://moodeaudio.org/forum/forumdisplay.php?fid=3)
+--- Forum: FAQ and Guides (https://moodeaudio.org/forum/forumdisplay.php?fid=9)
+--- Thread: [How to do instruction] 128x64 OLED with Song Status and Spectrum Display on Raspberry Pi (/showthread.php?tid=155)



RE: 128x64 OLED with Song Status and Spectrum Display on Raspberry Pi - Jempie - 09-01-2021

(09-01-2021, 10:41 AM)adrii Wrote: Hi Jempie

Run the mpd_oled_service_edit command again. The options should be the same as you used before, but with an additional " -R" at the end (i.e. add three characters: space, hyphen, R). For example


Code:
sudo mpd_oled_service_edit -o 1 -b 21 -g 1 -f 20 -c alsa,plughw:Loopback,1 -R


Adrian

Works, thanks

Jempie


RE: 128x64 OLED with Song Status and Spectrum Display on Raspberry Pi - Jempie - 09-02-2021

(09-01-2021, 11:03 AM)Jempie Wrote:
(09-01-2021, 10:41 AM)adrii Wrote: Hi Jempie

Run the mpd_oled_service_edit command again. The options should be the same as you used before, but with an additional " -R" at the end (i.e. add three characters: space, hyphen, R). For example


Code:
sudo mpd_oled_service_edit -o 1 -b 21 -g 1 -f 20 -c alsa,plughw:Loopback,1 -R


Adrian

Works, thanks

Jempie

Adrian,

what could be the reason, that when i switch on and off the RPI sometimes more than often there is no ethernet connection
I have to try several times before there is a connection... how can I check this 

Jempie


RE: 128x64 OLED with Song Status and Spectrum Display on Raspberry Pi - adrii - 09-02-2021

Hi Jempie

I recommend asking in the Moode Support forum

   http://moodeaudio.org/forum/forumdisplay.php?fid=7

Adrian.


RE: 128x64 OLED with Song Status and Spectrum Display on Raspberry Pi - Jempie - 09-23-2021

Adrian,

how can i change on the first screen MOODE instead of the time
because on the second screen it has the time

is there a way to switch off the bars?

thanks


RE: 128x64 OLED with Song Status and Spectrum Display on Raspberry Pi - adrii - 09-23-2021

Hi Jempie

There are no options to change the "stop" screen in the way you want, and there are no options for a "play" screen without the spectrum area. See

   https://github.com/antiprism/mpd_oled/blob/master/doc/FAQ.md

If you just want to stop the bars displaying in the spectrum area then specify the mpd_oled -c option as '-c fifo,/tmp/dummy' (instead of '-c alsa,plughw:Loopback,1'). 

Adrian.


RE: 128x64 OLED with Song Status and Spectrum Display on Raspberry Pi - officialsm - 09-26-2021

Hi '@adrii ,
just installed 7.4. Oled display shows the first song and goes freezing. I can see it on but was not refreshed, like holded.
Reinstalled packages without success.
with "sudo systemctl status mpd_oled" command i have this errors:

● mpd_oled.service - MPD OLED Display
Loaded: loaded (/etc/systemd/system/mpd_oled.service; enabled; vendor preset: enabled)
Active: failed (Result: exit-code) since Sun 2021-09-26 20:47:02 CEST; 1min 8s ago
Process: 6504 ExecStartPre=/usr/bin/mpd_oled_launch_test (code=exited, status=0/SUCCESS)
Process: 6538 ExecStart=/usr/bin/mpd_oled -o 0 -b 21 -g 1 -f 15 (code=exited, status=1/FAILURE)
Main PID: 6538 (code=exited, status=1/FAILURE)

Sep 26 20:47:01 MOODE systemd[1]: Starting MPD OLED Display...
Sep 26 20:47:02 MOODE systemd[1]: Started MPD OLED Display.
Sep 26 20:47:02 MOODE mpd_oled[6538]: mpd_oled: error: option -o: invalid 128x64 oled type 0 (see -h)
Sep 26 20:47:02 MOODE systemd[1]: mpd_oled.service: Main process exited, code=exited, status=1/FAILURE
Sep 26 20:47:02 MOODE systemd[1]: mpd_oled.service: Failed with result 'exit-code'.


RE: 128x64 OLED with Song Status and Spectrum Display on Raspberry Pi - Cardone - 09-26-2021

Hello, after updating to version 7.4.0, I didn't work anymore either.
I switched on loopback (Audio Config) and restarted moode, then it worked again without any problems ...

Code:
sudo systemctl status mpd_oled
● mpd_oled.service - MPD OLED Display
  Loaded: loaded (/etc/systemd/system/mpd_oled.service; enabled; vendor preset: enabled)
  Active: active (running) since Sun 2021-09-26 19:11:31 CEST; 1h 51min ago
 Process: 367 ExecStartPre=/usr/bin/mpd_oled_launch_test (code=exited, status=0/SUCCESS)
Main PID: 1015 (mpd_oled)
   Tasks: 5 (limit: 2059)
  CGroup: /system.slice/mpd_oled.service
          ├─1015 /usr/bin/mpd_oled -o 6 -b 10 -g 1 -f 15 -c alsa,hw:Loopback,1
          ├─1017 sh -c mpd_oled_cava -p /tmp/cava_config_mOwsPV
          └─1018 mpd_oled_cava -p /tmp/cava_config_mOwsPV

Sep 26 19:11:11 moode systemd[1]: Starting MPD OLED Display...
Sep 26 19:11:31 moode systemd[1]: Started MPD OLED Display.



RE: 128x64 OLED with Song Status and Spectrum Display on Raspberry Pi - adrii - 09-27-2021

Hi officialsm

The error meassage says

Code:
mpd_oled: error: option -o: invalid 128x64 oled type 0 (see -h)

This is because mpd_oled is being started with '-o 0'

Code:
Process: 6538 ExecStart=/usr/bin/mpd_oled -o 0 -b 21 -g 1 -f 15 (code=exited, status=1/FAILURE)

If you try running mpd_oled_service_edit and specify your display with option -o then mpd_oled will hopefully work.

Adrian


RE: 128x64 OLED with Song Status and Spectrum Display on Raspberry Pi - adrii - 09-27-2021

Hi Cardone

Thanks for posting the steps required to get mpd_oled working after an update to Moode 7.4.

Adrian.


RE: 128x64 OLED with Song Status and Spectrum Display on Raspberry Pi - officialsm - 09-27-2021

(09-27-2021, 04:22 AM)adrii Wrote: Hi officialsm

The error meassage says

Code:
mpd_oled: error: option -o: invalid 128x64 oled type 0 (see -h)

This is because mpd_oled is being started with '-o 0'

Code:
Process: 6538 ExecStart=/usr/bin/mpd_oled -o 0 -b 21 -g 1 -f 15 (code=exited, status=1/FAILURE)

If you try running mpd_oled_service_edit and specify your display with option -o then mpd_oled will hopefully work.

Adrian

I have to avoid -o option?