| 14 | } |
| 15 | |
| 16 | void checkReady() |
| 17 | { |
| 18 | static bool ledState; |
| 19 | |
| 20 | ledState = !ledState; |
| 21 | digitalWrite(GPIO_LED, ledState); |
| 22 | |
| 23 | if(!player.begin(Serial)) { |
| 24 | return; |
| 25 | } |
| 26 | |
| 27 | digitalWrite(GPIO_LED, 0); |
| 28 | |
| 29 | player.volume(15); |
| 30 | |
| 31 | timer.initializeMs<10000>(nextSong).start(); |
| 32 | } |
| 33 | |
| 34 | } // namespace |
| 35 |
nothing calls this directly
no test coverage detected