Page 32 of 51

Re: The New Release is ready

PostPosted: 30 Dec 2020, 16:00
by Ssoum
rern wrote:The New Release is ready.

Most of reported bugs were fixed in this release.
Please get it from GitHub.

rern

Updated to 20201230

Thank you very much rern, this is a very good version.
LCD is ok for me without modifying the program but I have to modify the lcdchar.conf file because by the interface it does not save correctly pin_data. Always reverts to a default value.

No screen for spotify, normal maybe? I will try to program it.

Re: RuneAudio+R e6

PostPosted: 30 Dec 2020, 17:11
by GriffinUcos
Updated to 20201230. Everything except Bluetooth dongle works fine. I was able to work around by putting the Raspi on top of the Bluetooth tower (using the handy usb 5v out) and accessing via a WIFI dongle. As luck would have it my DAC arrived today so I was able to connect to the tower via an RCA phono lead. Great job rern, thank you so much. Have a great New year.

Raspi B+ rOS 20201230 IQAudio DAC pro

Re: RuneAudio+R e6

PostPosted: 30 Dec 2020, 20:50
by Ssoum
I don't know if I'm the only one who doesn't have the spotify information on my LCD?
(I'm new to rAudio and I certainly haven't read everything)
I'm posting in case it is interesting, maybe I missed it or I'm not patient enough.
While waiting, I had fun writing a python script to do it.
The script is basic, it only reads existing files.
The script runs as a service, when the files change I update the LCD.
I call the existing scripts for display, but I do not modify the rAudio scripts.
There is definitely a better way, but if it interests I give the script.

Re: RuneAudio+R e6

PostPosted: 30 Dec 2020, 20:50
by Ssoum
I don't know if I'm the only one who doesn't have the spotify information on my LCD?
(I'm new to rAudio and I certainly haven't read everything)
I'm posting in case it is interesting, maybe I missed it or I'm not patient enough.
While waiting, I had fun writing a python script to do it.
The script is basic, it only reads existing files.
The script runs as a service, when the files change I update the LCD.
I call the existing scripts for display, but I do not modify the rAudio scripts.
There is definitely a better way, but if it interests I give the script.

Re: RuneAudio+R e6

PostPosted: 31 Dec 2020, 20:35
by Ssoum
Update to 2020/12/31
@rern Thank you, Spotify print on LCD now ;)
Very good eve to you :)

Re: RuneAudio+R e6

PostPosted: 31 Dec 2020, 21:08
by mareko
After latest update all NETWORK Settings are gone, I thought that maybe by image got corrupted but there is major problem with latest update.
Wifi file is gone, I've added WIFI config file manually but for some reason reason it's being deleted every time Rune boots up.
I had to start from scratch, NAS mount never worked for me.

Re: RuneAudio+R e6

PostPosted: 31 Dec 2020, 21:11
by Ssoum
mareko wrote:after latest update all NETWORK Settings are gone, I thought that maybe by image got corrupted but there is major problem with latest update.
NAS mount never worked.

it's all right for me.
My disk is mount. (cifs)

Re: RuneAudio+R e6

PostPosted: 31 Dec 2020, 21:15
by mareko
Ssoum wrote:
mareko wrote:after latest update all NETWORK Settings are gone, I thought that maybe by image got corrupted but there is major problem with latest update.
NAS mount never worked.

it's all right for me.
My disk is mount. (cifs)


I tried both & my synology is not mounting.

Re: RuneAudio+R e6

PostPosted: 31 Dec 2020, 21:29
by mareko
Ssoum wrote:
mareko wrote:after latest update all NETWORK Settings are gone, I thought that maybe by image got corrupted but there is major problem with latest update.
NAS mount never worked.

it's all right for me.
My disk is mount. (cifs)




I got WIFI working, i copied WIFI file again to boot & what i didn't know that i had to enable it manually in settings.
but it is strange that the wifi file went missing after the update.

Re: RuneAudio+R e6

PostPosted: 01 Jan 2021, 01:05
by Ssoum
@rern I find some bug :

- in cmd.sh : line 470 : change pushstreamStatus by pushstreamStatus lcdchar
else the time continue of previous song

- in lcdchar.py
lcd close too early, change
Code: Select all
lcd.write_string( lines + rn + progress[ :cols ] )
lcd.close()

if state == 'stop' or state == 'pause': quit()

by :
Code: Select all
lcd.write_string( lines + rn + progress[ :cols ] )

if state == 'stop' or state == 'pause':
    lcd.close()
    quit()

else elapsed time no change
(for spotify elasped time does not work, no found)

Sometimes my screen displays any random character but I haven't found the problem yet.

@++