Asked — Edited

Mp3 Trigger Added To Mobile?

Hello everyone, Does anyone know if there are plans to add support for the mp3 trigger control into the mobile interface builder? I'm currently using the mp3 trigger connected to an external speaker which is much louder than the speaker in the EZ-B v4. I know about the tutorial on how to break out the sound but I'd rather not modify my EZ-B if I don't have to.

Thanks, Will


ARC Pro

Upgrade to ARC Pro

Elevate your robot's capabilities to the next level with Synthiam ARC Pro, unlocking a world of possibilities in robot programming.

PRO
Synthiam
#1  

There's a misunderstanding - the mp3 trigger is a control which isn't supported but the EZ-Script mp3 trigger commands are supported.

So simply use EZ-Script commands the mp3 trigger will work.

[feature] MP3TriggerPlayTrack( digitalPort, baud, trackNumber, [pause time] ) Plays the specified MP3 track from the MP3 Trigger Sheild Optionally, the Pause Time value can be used which disables the Speech Recognition control for the specified number of milliseconds. Example: MP3TriggerPlayTrack( d0, 38400, 1 ) Example: MP3TriggerPlayTrack( d0, 38400, 1, 3000 )

MP3TriggerVolume( digitalPort, baud, volume ) Set the volume of the mp3 trigger between 0 and 255. 0 is louded, 255 is quiet. Example: MP3TriggerVolume( d0, 38400, 20 )

MP3TriggerPlayRandomTrack( digitalPort, baud, lowestTrackNum, highestTrackNum ) Plays a random MP3 track from the MP3 Trigger Sheild between the supplied track numbers Example: MP3TriggerPlayRandomTrack( d0, 38400, 1, 10 )

MP3TriggerNext( digitalPort, baud ) Plays the next MP3 track from the MP3 Trigger Sheild Example: MP3TriggerPlayNext( d0, 38400 )

MP3TriggerPrev( digitalPort, baud ) Plays the previous MP3 track from the MP3 Trigger Sheild Example: MP3TriggerPrevious( d0, 38400 )

MP3TriggerStop( digitalPort, baud ) Stops the current MP3 track from the MP3 Trigger Sheild Example: MP3TriggerStop( d0, 38400 ) [/feature]

#2  

Awesome! Thanks for the quick response. I'll try this out.