Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2021-11-12 Thread df77


pputzer wrote: 
> The original wiring I had was correct. The missing piece was that the
> gpio-poweroff overlay needs "active_low" to be enabled (either the
> posting by Audiophonics contained a typo, or they changed the board
> later on). With the wiring according to the Audiophonics pictures and
> these settings, everything now works reliably:
> 
> 27325
> 
> Thanks again for the great work on piCorePlayer, and for the help in
> here!

I'm still trying to figure out how to use the power module in the
current RaspTouch (PI-SPC_Reg V2) with regard to softshutdown. The above
example surprisingly works, but only if the shutdown process was
initiated via the hardware power button. If shutdown was initiated by
software, the poweroff sequence does not finish and the power button
light will stay on.

The wiring is performed in the following way:
Soft SD -- GPIO04
ShutDown -- GPIO17
Boot OK -- GPIO22

As far as I understand the wiring and the examples at github
https://github.com/audiophonics/Raspberry-pwr-management/blob/master/softshutdown.sh
and
https://githubusercontent.com/audiophonics/Raspberry-pwr-management/master/sds.sh,
as well as the official documentation of the former RaspTouch
http://forum.audiophonics.fr/viewtopic.php?p=6237#p6237, the power
module will act in the following way:

During the boot process, the power button will be slowly flashing and
will not initiate any shutdown process until it receives a "Boot OK"
signal via GPIO22. If GPIO22 has been set to 1, the button will light
continuously and is waiting for a keypress. If the button will be
pressed, then GPIO17 switches to 1, which will be catched by the
shutdown-monitor, triggering shutdown and followed by poweroff. During
shutdown, the power module will be in some waiting state (blinking). 

GPIO04 seems to be the way to trigger this state from the software side,
however I am still trying to get it done the right way.

The above example works at least with regard to the hardware initiated
shutdown, as setting gpio-poweroff to GPIO22 and active low will pull-up
GPIO22 which is interpreted by the power module as "BootOK" - which is a
prerequisite for the shutdown+power-off process. The same can be
performed in this way (via config.txt):

Code:

gpio=22=op,dh
  dtoverlay=gpio-shutdown,gpio_pin=17,active_low=0,gpio_pull=down


additionally it could be helpful to set GPIO4 to a proper state, in case
of a reboot:

Code:

gpio=4=op,dl



Another way to pull up GPIO22 = BootOK at a later stage during boot
process could be performed e.g. via "User command #1" in PCP:

Code:

/usr/local/bin/pcp-gpio mode 22 out ; /usr/local/bin/pcp-gpio write 22 1


That should be more correct with regard that the boot process should
have finished.

A proper power-off after a software-initiated shutdown process can now
be initiated as described in the github examples by toggling GPIO4 up
(for one second?) before executing /sbin/poweroff. However, I still have
to find an easy way that a custom shutdown script will execute "pcp-gpio
mode 4 out; pcp-gpio write 4 1; sleep 1; pcp-gpio write 4 0" before
/sbin/poweroff will be called - using gpio-shutdown does not seem to
work.



Main: *Transporter *-> [Marantz PM7005 -> Canton Vento 820.2] | [Meier
enhanced crossfeed -> Topping A50s -> Dan Clark Audio Aeon 2 closed]
Office: *Squeezelite-esp32*+SSD1322+IR+Cirrus CS43198 -> Yamaha CRX-E400
-> Q Acoustics 3010i
Garden: *DAC32* -> Objective2 -> Dan Clark Audio Aeon 2 closed
Bathroom and children's room: 2x *SB Radio*
Spare devices / ongoing projects: 2 x *SB3*, *Touch*,
*PiCorePlayer8*+RasPi3A++DAC+light+RTC+7'' Display+XBox Media
Remote+LMS
Server: NUC7CJYH2+Debian+LMS+Resilio Sync

df77's Profile: http://forums.slimdevices.com/member.php?userid=71347
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2021-07-05 Thread binky


pputzer wrote: 
> The original wiring I had was correct. The missing piece was that the
> gpio-poweroff overlay needs "active_low" to be enabled (either the
> posting by Audiophonics contained a typo, or they changed the board
> later on). With the wiring according to the Audiophonics pictures and
> these settings, everything now works reliably:
> 
> 27325
> 
> Thanks again for the great work on piCorePlayer, and for the help in
> here!
thanks these settings work for me too:D



binky's Profile: http://forums.slimdevices.com/member.php?userid=66862
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2020-03-17 Thread truscellino


Hi all,

The original audiophonics sript sds.sh had this:

Code:

echo "ShutDown : GPIO17=in, Low"
  echo "BootOK   : GPIO22=out, High"
  echo "SoftSD   : GPIO04=out, Low"
  
  gpio -g mode 04 out
  gpio -g write 04 0
  gpio -g mode 17 in
  gpio -g write 17 0
  gpio -g mode 22 out
  gpio -g write 22 1



The pcp-powerbutton script contains the following variables:

Code:

IN_LOW=0
  PIN_IN=17
  PIN_OUT=22
  PUPDOWN="off"



And then further down (note: WiringPi is not used anymore in
PicorePlayer... "pcp-gpio" instead):

Code:

pcp-gpio mode $PIN_IN in
  pcp-gpio mode $PIN_IN $PUPDOWN
  pcp-gpio mode $PIN_OUT out
  pcp-gpio write $PIN_OUT 1



In my recent experiments with PcP 6.0.0 and power management module
integrated in DAC audiophonics i-sabre ESS9023 V3, overlay method worked
well. What I am missing is the soft shutdown functionality i.e. the
power management module being made aware of shutdown done in the Pi (via
LMS, ssh or whatever). I guess I could try and add some gpio commands on
pin 04 in the pcp-powerbutton script?

Thanks, Marc



truscellino's Profile: http://forums.slimdevices.com/member.php?userid=69928
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2020-02-29 Thread mnakalay


audiophonics wrote: 
> Now that PiCore discontinued our custom script and is including the
> standard overlays, we should consider to offer the "overlay" version.

Actually that's not totally correct. The new version includes a script
that uses your GPIO values as default and works with your module. I
quote, from the script, "Defaults are for the Audiophonics power
button"

So instead of your script, use /home/tc/pcp-powerbutton.sh and it works
the way it is.



mnakalay's Profile: http://forums.slimdevices.com/member.php?userid=69901
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2019-05-12 Thread pputzer


The original wiring I had was correct. The missing piece was that the
gpio-poweroff overlay needs "active_low" to be enabled (either the
posting by Audiophonics contained a typo, or they changed the board
later on). With the wiring according to the Audiophonics pictures and
these settings, everything now works reliably:

27325

Thanks again for the great work on piCorePlayer, and for the help in
here!


+---+
|Filename: Bildschirmfoto 2019-05-12 um 18.17.27.png|
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=27325|
+---+


pputzer's Profile: http://forums.slimdevices.com/member.php?userid=36842
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2019-05-11 Thread pputzer

paul- wrote: 
> The audiophonics documentation is confusing.  And I didn't help, as I
> was referring to this power board.
> 
> https://www.audiophonics.fr/en/raspberry-pi-and-other-sbc-accessories/audiophonics-pi-spc-v2-power-management-module-for-raspberry-pi-p-10912.html
> 
> But my board has an IR remote on it, so perhaps it was never
> released..the silk screen is messed up on my board too.   The cable
> connected to the "SoftShutdown" (Labeled GPIO4 on the documentation) 
> They had a tag on the connector end that said GPIO17.  I'm really not
> sure how to connect yours.

Interesting. Mine has an extra set of connectors at a 90° angle to the
GPIOs, where one pin is labled "IR". It differs from the images of the
power board at the Audiophonics site (but it looks like that's the only
difference). I've already written to Audiophonics, but have not received
a reply yet.



pputzer's Profile: http://forums.slimdevices.com/member.php?userid=36842
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2019-05-11 Thread paul-


The audiophonics documentation is confusing.  And I didn't help, as I
was referring to this power board.

https://www.audiophonics.fr/en/raspberry-pi-and-other-sbc-accessories/audiophonics-pi-spc-v2-power-management-module-for-raspberry-pi-p-10912.html

But my board has an IR remote on it, so perhaps it was never
released..the silk screen is messed up on my board too.   The cable
connected to the "SoftShutdown" (Labeled GPIO4 on the documentation) 
They had a tag on the connector end that said GPIO17.  I'm really not
sure how to connect yours.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2019-05-11 Thread pputzer


Here's the actual cabling (when the button triggers a shutdown, i.e.
reversed from what I read from the documented pin layout):

27316

Normal operations:
27317

Shutdown triggered (but not complete):
27318

Shutdown complete (but power not cut):
27319


+---+
|Filename: 3 - Shutdown finished (klein).jpg|
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=27319|
+---+


pputzer's Profile: http://forums.slimdevices.com/member.php?userid=36842
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2019-05-11 Thread pputzer


paul- wrote: 
> the shutdown is gpio 17, active high, and pull down

Same result. According to Audiophonics images, these are the pin-to-GPIO
mappings:

[image:
https://www.audiophonics.fr/20981-thickbox_default/audiophonics-pi-spc-ii-power-management-power-supply-for-raspberry-pi.jpg]
[image:
https://www.audiophonics.fr/img/cms/Images/Produits/12K/12795/Schema9038.jpg]

When I switch the cables around (connecting GPIO.04 from the PI-SPC to
supposed GPIO.22 on the DAC and vice versa), these settings and the
button actually make the pCP shutdown, but the power off is not
(reliably) triggered, although all three LEDs on the PI-SPC are lit at
the end of the sequence.



pputzer's Profile: http://forums.slimdevices.com/member.php?userid=36842
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2019-05-11 Thread paul-


the shutdown is gpio 17, active high, and pull down



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2019-05-11 Thread pputzer


paul- wrote: 
> Poweroff is gpio 22, active high

27315

With this setting, the power button never stops blinking after switching
on power. Pushing it again does not trigger a shutdown. When shutting
down the device from the web interface, it does not power off.


+---+
|Filename: Bildschirmfoto 2019-05-11 um 15.38.10.png|
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=27315|
+---+


pputzer's Profile: http://forums.slimdevices.com/member.php?userid=36842
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2019-05-11 Thread paul-


Poweroff is gpio 22, active high



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2019-05-11 Thread pputzer


paul- wrote: 
> The settings would be what is printed, just add pull down on gpio 17.
> 
> Thanks for letting me know about the getopt issue, there is a hard path
> set in the script.

I'm actually not sure which overlay (corresponds to which "Signal"
(BootOK, ShutDown)?



pputzer's Profile: http://forums.slimdevices.com/member.php?userid=36842
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2019-05-11 Thread paul-


The settings would be what is printed, just add pull down on gpio 17.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2019-05-11 Thread pputzer

paul- wrote: 
> The defaults should work for the module, as I used that board to develop
> the setup.  But,I’ll check it out.

I've experimented a bit more. When disabling the overlays and instead
using the pop-powerbutton.sh script from the home directory (after
linking /bin/busybox to /usr/bin/getopt), the script works out of the
box with the default values:


Code:

tc@piCorePlayer:~$ ./pcp-powerbutton.sh 
  No command line settings, Using defaults
  
  piCorePlayer Power button shutdown script starting...
  Asserting pins : 
  ShutDown : GPIO17=in, High
  BootOK   : GPIO22=out, High
  piCorePlayer shutting down.



Power to the RPi is cut by the Audiophonics board. What would the
corresponding overlay settings be?



pputzer's Profile: http://forums.slimdevices.com/member.php?userid=36842
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2019-05-08 Thread pputzer

If you meant the GPIOs, I‘m using the button/power supply together with
an Audiophonics HAT, which has special pins for this. So I am using the
standard GPIOs, but I don‘t know what the overlay settings should be. (I
think I know, but then the shutdown sometimes only happens after the
next reboot finishes (which I trigger via the web interface), not on its
own.


Gesendet von iPhone mit Tapatalk





pputzer's Profile: http://forums.slimdevices.com/member.php?userid=36842
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2019-05-08 Thread pputzer


paul- wrote: 
> The GPIO on the rpi has default values for the internal pullup/down
> resistors, we can change them, but not until the kernel finishes
> booting, that can be too late. You need to use a GPIO that matches.  IN
> the case of Audiophonics, use the GPIO connections that they recommend.

Is there an explicit recommendation anywhere? I just tried to model the
settings on that post in the other thread.


Gesendet von iPhone mit Tapatalk





pputzer's Profile: http://forums.slimdevices.com/member.php?userid=36842
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2019-05-08 Thread paul-


The GPIO on the rpi has default values for the internal pullup/down
resistors, we can change them, but not until the kernel finishes
booting, that can be too late. You need to use a GPIO that matches.  IN
the case of Audiophonics, use the GPIO connections that they recommend.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2019-05-08 Thread pputzer


I've experimented a bit more. "Pull" has to be set to "up", otherwise
nothing at all happens when I press the button in its operational state.
However, while it has worked when I did a test run, it now appears to
only switch off the RPi after the next reset. Very strange.



pputzer's Profile: http://forums.slimdevices.com/member.php?userid=36842
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2019-05-08 Thread pputzer

paul- wrote: 
> The defaults should work for the module, as I used that board to develop
> the setup.  But,I’ll check it out.

I meant the technical default (in the kernel), not the one in the GUI.
I‘d have to check, but I think they at least differed.


Gesendet von iPhone mit Tapatalk





pputzer's Profile: http://forums.slimdevices.com/member.php?userid=36842
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2019-05-08 Thread paul-

The defaults should work for the module, as I used that board to develop
the setup.  But,I’ll check it out.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2019-05-08 Thread pputzer

paul- wrote: 
> Can you let me know how it’s connected and what rpi you are using, I’ll
> setup a test here.

It's an RPi 3B+ connected via WiFi.

When I tried shutting off again last night, it did so only after a
reboot finished. Maybe the overlay settings are not quite right yet?
(Pin 22, active high, pull up). Should the pull up be "off" instead?
>From what I've read, "up" is the default, so that's what I chose from
the raw dtoverlay lines given by the Audiophonics engineers in their
earlier post.



pputzer's Profile: http://forums.slimdevices.com/member.php?userid=36842
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2019-05-07 Thread paul-

Can you let me know how it’s connected and what rpi you are using, I’ll
setup a test here.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2019-05-07 Thread pputzer


I've got the new Audiophonics PI-SPC II connected with the power button
from the RaspTouch case and after some fiddling, it works - sort of. The
button stops blinking on boot up, and the shutdown handler gets
triggered when there is absolutely no load. As soon as a song is
playing, it takes several minutes (seemingly forever) until the player
gets actually shut down. 

What's the best way to debug this?  /usr/local/bin/shutdown-monitor is
running. (I've got a lot of experience with Linux/Unix, but very little
with the RPi eco system. With pCP,, my investigation has been hampered
by the lack of persistent log files.)



pputzer's Profile: http://forums.slimdevices.com/member.php?userid=36842
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2019-04-05 Thread Man in a van


paul- wrote: 
> Which power board do you have?  The new model?  Link to what you have
> please.
> 
> The shutdown-monitor extension was designed for the new board, although
> it will be able to work with any board when we release 5.0

Ah, sorry, I forgot to mention that.:( rpi3B. standard edition of pCP

> piCorePlayer | piCorePlayer v4.1.0 | linux 4.14.81-pcpCore_v7 | piCore
> v9.2pCP | Squeezelite v1.9.0-1121-pCP | Fri Apr 5 13:54:21 BST 2019
> 

I have used it before, last year and the year before.  :)

ronnie



Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2019-04-05 Thread paul-


Which power board do you have?  The new model?



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2019-04-05 Thread Man in a van


Hey Frank

I can confirm that the procedure still works, I have just made a fresh
card and completed the install.

Remember that after loading the extension, you need to click the reset
button.

Also remember to check the Audio output settings for the player after
the reboot.

And don't forget you can set a favourite to start playing on power up
(if that would be required).

I use a very short press on the power button to start and stop, led
flashes for 10/11 Mississippi  for stop and a few more for start (using
the inbuilt wireless on a rpi3b).:)

ronnie



Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Help needed configuring Audiophonics power button shut-off in piCorePlayer

2019-04-05 Thread Man in a van


ftarz wrote: 
> I have an AUDIOPHONICS I-SABER V4 DAC ES9023 TCXO that is installed in a
> RaspTouch case with a Raspberry Pi 3B+ running piCorePlayer V4.1.0. The
> case power button is wired to the switch and LED pins on the DAC.
> 
> The DAC and RPi will power-up when I press the case power button, but
> the power button continues to flash constantly.
> 
> The DAC and RPi will shut-down only if I hold the power button for 5
> seconds. But if I momentarily press the power button nothing happens.
> 
> I have the Audiophonics-powerscript and shutdown-monitor extensions
> installed in piCorePlayer but do not have any instructions for their
> proper configuration.
> 
> Can anyone provide some instructions for proper configuration in
> piCorePlayer?
> 
> Regards.
> 
> Frank

Hi Frank,

hope this still works

https://forums.slimdevices.com/showthread.php?106755-Announce-piCorePlayer-3-10=872687=1#post872687

ronnie



Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627
View this thread: http://forums.slimdevices.com/showthread.php?t=110421

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss