PDB audio amplifier?
smpl
Posts: 19
I have the Professional Development Board and a VMusic2 Module. I am connecting the line L&R outputs of the VMusic2 to the audio input X7 on the PDB. The audio level on the internal speaker is so low that it is barely audible. I also tried an external 8ohm .5w speaker and I get the same results. So thinking there might be a problem with the VMusic2 output, I connected my IPOD the the X7 audio input on the PBD and again the same result. I need to turn the IPOD volume all the way up to even hear anything and still the audio level is super low. Am I missing something here?
Comments
I have had no problem with the VMUSIC2 sound level. The use the VSV command to set the VMUSIC2 volume level where 0=max and 254=min
See my Propeller VMUSIC2 project here: http://forums.parallax.com/showthread.php?135033-IR-Remote-controlled-VMUSIC2-MP3-Player
I did use that PDB amp once to amplify audio from my TV but there was way too much static to be useful.
falcon
Here is the spec sheet http://www.vlsi.fi/fileadmin/datasheets/vlsi/vs1003.pdf
Maybe 8 ohms damaged the VMUSIC2...
Direct link to HD video
[video=youtube_share;m2bv32JZ-ko]
Opps - SORRY! Try it again. I changed it from private to unlisted...
I think the output pins and front jack are the same connection.
I am very happy with sound quality - it sounds as good as my Sony 300 CD changer on the home stereo.
Using:
SEROUT 0,240, ["VSV 0",CR] 'Does nothing. Very quiet output.
However Using:
SEROUT 0,240, ["VSV ",0,CR] 'Outputs full volume.
Once I had full volume I tried this:
SEROUT 0,Baud, ["VSV 254",CR] 'Changes the volume however its not muted. Its the same as the first attempt. Very quiet output.
Also when I replace the value 254 with anything from 0 to 254 I get the same results. Very quiet output. All at the same very quiet output.
I think I have read just about every post on this subject and I yet to find a solution. Has anyone had success with the "VSV" command with
a BS2p?
SEROUT 0,240,["VSV ",volume,CR]
Use volume = 0 for maximum, volume = 254 for minimum. It makes no difference whether you're using a BS2p or a BS2. Only the Baud constant is different.
Vol VAR Byte
Vol = 30 '(Any value from 0 to 254 ie.. 0=Full volume thru 254= Mute)
SEROUT 0,240,["VSV ",Vol,CR]
Thanks Mike.
EDIT: Actually, I think the VMUSIC2 defaults to full volume at power-up - if you had not tried to set it, it probably would have worked.
Thanks Ron.