// _sound_info-v29c.txt  (2/07/2026)
// sound info for sketch version 35 and higher
//
//
    // TO ENABLE SPEED ADJUST POT:
    // Create folder named "10-settings" on your SD card(from the DF-Player)
    //
    // Place an MP3 with a name starting with "100-speedPOT". 
    // You can add to end of this name if desired



    // TO ENABLE SPEED ADJUST WITHOUT A POT: 
    // Create folder named "10-settings" on your SD card(from the DF-Player)
    //
    // Place an MP3 with a name starting with "101-speedPICK". 
    // You can add to end of this name if desired
    // 100-speedpot must not exist (rename it to x100-speedpot)
    //
    // Now name another MP3 with a name between 050 and 099 to indicate your speed setting.
    // There may already be a file named  "x060-speed has been set.mp3" that you can remove
    // the "x" and change the 3 digits to your desired speed adjust setting.
   


    // TO ENABLE External XY160d Motor drive for larger robots : 
    // (normally not needed...some of us are not normal)
    // Some motor drivers like the XY-160d require IN1 and IN2 to be set to 00 for braking.
    // The TB6612FNG uses 00 for stop and 11 for brake. We dont use brakes on the minidalek.
    //
    // Place an MP3 with a name starting with "102-" in the folder named "10-settings" 
    // on your SD card (from the DF-Player).
     // There may already be a file named  "x102-XY160.mp3" that you can remove
    // the "x" from.
 
   /* Settings folder
   000 - 009 spoken numbers ZERO through NINE
   010 - spoken POINT
   011 - 017 spoken letters A through G
   018 - spoken DEFAULT VALUE HAS BEEN SET
   020 spoken MINIDALEK VERSION

   036 - pivot pick based on existing filename from 037 to 049 
   037 - 049 pivot pick setting
   set pivot speed from 037-049 (otherwise default to .85)   pivotAdjust = (pivotPick+1) * .02
   examples    037 = .76   038 = .78   042 - .86   048 - .98   049 - 1.0
   050 - 099  speed pick setting
   100 - speed adjust with pot
   101 - speed pick without pot based on existing filename from 050 to 099
   102 - enable XY160 motor driver

   */

/*
DF Player Mini info:

1 .The default  folders are  named  as "00", "11", “99” in  this  way. It is
made to support maximum 100 folders and maximum 255 tracks in each folder.
Tracks are named "001" through "255" and may be .mp3 or .wav

2. For example, to specify and play “100-filename.mp3” in the folder "01", 
     send the command 7E FF 06 0F 00 01 64 EF  
     or in decimal 126,255,6,15,0,1,100,239
  MSB: 6th byte represents the name of the folder, supports 99 folders from 00-99
  LSB: 7th byte represents the track, supports 255 tracks from 0x01 to 0xFF

3. You must specify both the folder and the file name to target a track. 
   This feature supports MP3 and WAV audio formats.
*/




//
// All audio files are stored on the Micro SD card inserted in the DFPlayer Mini module
// Sound files can be either MP3 or WAV files
//
// Sounds are stored in folder named 00 (you can append to name: 00-sound files  or anything after the 00)
//
// Sound files must be named starting with 3 digits from 001-255 and placed in 00 folder
//   example:  005-exterminate.mp3
//
//
//
// there are 4 audio modes (for now)
//
// servo mode - down, X button and PS button (just a few sounds - least annoying) 
// dpad mode - right, left, down, X and ps button (many sounds - beast mode!)
// ps mode - X, down, ps button  (some sounds - OK for kids)
// r2d2 mode - enable this by holding Button1 while booting or install jumper by Button1
//
//
// press up arrow 12 times to enable Dpad key sounds and disable servo mode- DONT TELL THE KIDS
// (up arrow 12 more times returns to servo mode from Dpad mode)
//
//   right - cycles through 15 sounds named (201-215 if dpad*) (170 if PSmode*)
//   left  - (replay right arrow sound if dpad*) (175 if PSmode*)
//   
//   up    - plays sound named (216 if dpad)
//           works 3 times until you press another button
//
//   down  - plays sound named (220 if servo*) (221-222 if dpad*) (223 if PS*) 
//           works once until you press another button

//
// press down arrow 12 times to enable round PlayStation button(PSmode)- DONT TELL THE KIDS
// (down arrow 12 more times returns to servo mode from PSmode)
//
//   PS    - cycles through sounds (224 if servo) (225-229 if PSmode*) (230-250 if dpad) ear lights
//           (sound 011 if r2d2)
//
//   X     - (sound 140-143 if servo*) (sound 150-159 if dpad*) (sound 160-164 if PSmode*) - gun light 
//           (sound 038-050 if r2d2*)
//	
// 012 - Red circle button (r2d2 mode gun)	
// 013 - Red circle button (machine gun)
// 015 - Trigger button (Pew gun)
// 016 - Trigger button (r2d2 Pew gun)
// 008 - L1 button (r2d2 mode)its a trap (cycle through 008-010)
// 005 - L1 button (exterminate)
// 190 - dpadMode announcement
// 191 - psMode announcement
// 192 - servoMode announcement
// 193 - dalekMode announcement
// 194 - r2d2Mode announcement
// 195 - Adjustable speed announcement
//
//        * ignore the asterisk



/*
//
TO ENABLE SPEED ADJUST POT: (ver 32 and up)
create folder named "10-settings" on your SD card(from the DF-Player)

Place an MP3 with a name starting with "100-speedPot=On" in the new folder
You can add to end of this name if desired
(if this file already exists, you can remove the X at the beginning to activate the speed pot)
 

When the board is powered up, this MP3 will play and be detected to enable the speed control.


    // TO ENABLE External XY160d Motor drive for larger robots : 
    // (normally not needed...some of us are not normal)
    // Some motor drivers like the XY-160d require IN1 and IN2 to be set to 00 for braking.
    // The TB6612FNG uses 00 for stop and 11 for brake. We dont use brakes on the minidalek.
    //
    // Place an MP3 with a name starting with "102-" in the folder named "10-settings" 
    // on your SD card (from the DF-Player).
     // There may already be a file named  "x102-XY160.mp3" that you can remove
    // the "x" from.


An easy way to make speech MP3s is https://speakabo.com/text-to-speech/



//
*/
