/ ! @brief Play the next song in chronological order. */ /
| 83 | */ |
| 84 | /**************************************************************************/ |
| 85 | void DFPlayerMini_Fast::playNext() |
| 86 | { |
| 87 | sendStack.commandValue = dfplayer::NEXT; |
| 88 | sendStack.feedbackValue = dfplayer::NO_FEEDBACK; |
| 89 | sendStack.paramMSB = 0; |
| 90 | sendStack.paramLSB = 0; |
| 91 | |
| 92 | findChecksum(sendStack); |
| 93 | sendData(); |
| 94 | } |
| 95 | |
| 96 | |
| 97 |
nothing calls this directly
no outgoing calls
no test coverage detected