/ ! @brief Specify the playback source. @param source The playback source ID. */ /
| 331 | */ |
| 332 | /**************************************************************************/ |
| 333 | void DFPlayerMini_Fast::playbackSource(uint8_t source) |
| 334 | { |
| 335 | if ((source > 0) && (source <= 5)) |
| 336 | { |
| 337 | sendStack.commandValue = dfplayer::PLAYBACK_SRC; |
| 338 | sendStack.feedbackValue = dfplayer::NO_FEEDBACK; |
| 339 | sendStack.paramMSB = 0; |
| 340 | sendStack.paramLSB = source; |
| 341 | |
| 342 | findChecksum(sendStack); |
| 343 | sendData(); |
| 344 | } |
| 345 | } |
| 346 | |
| 347 | |
| 348 |
nothing calls this directly
no outgoing calls
no test coverage detected