/ ! @brief Stop the current playback */ /
| 142 | */ |
| 143 | /**************************************************************************/ |
| 144 | void DFPlayerMini_Fast::stop() |
| 145 | { |
| 146 | sendStack.commandValue = dfplayer::STOP; |
| 147 | sendStack.feedbackValue = dfplayer::NO_FEEDBACK; |
| 148 | sendStack.paramMSB = 0; |
| 149 | sendStack.paramLSB = 0; |
| 150 | |
| 151 | findChecksum(sendStack); |
| 152 | sendData(); |
| 153 | } |
| 154 | |
| 155 | |
| 156 |