/ ! @brief Play a specific track. @param trackNum The track number to play. */ /
| 123 | */ |
| 124 | /**************************************************************************/ |
| 125 | void DFPlayerMini_Fast::play(uint16_t trackNum) |
| 126 | { |
| 127 | sendStack.commandValue = dfplayer::PLAY; |
| 128 | sendStack.feedbackValue = dfplayer::NO_FEEDBACK; |
| 129 | sendStack.paramMSB = (trackNum >> 8) & 0xFF; |
| 130 | sendStack.paramLSB = trackNum & 0xFF; |
| 131 | |
| 132 | findChecksum(sendStack); |
| 133 | sendData(); |
| 134 | } |
| 135 | |
| 136 | |
| 137 |
nothing calls this directly
no outgoing calls
no test coverage detected