| 214 | } |
| 215 | |
| 216 | void select_button_double() |
| 217 | { |
| 218 | if (DEBUG_MODE) |
| 219 | DEBUG_PRINTLN(F("Select button double pressed")); |
| 220 | if (!BLOCK_NAVIGATION) |
| 221 | { |
| 222 | if (DFPLAYER_ACTIVE) |
| 223 | PeripheryManager.playFromFile(DFMINI_MP3_CLICK); |
| 224 | |
| 225 | if (MATRIX_OFF) |
| 226 | { |
| 227 | DisplayManager.setPower(true); |
| 228 | } |
| 229 | else |
| 230 | { |
| 231 | DisplayManager.setPower(false); |
| 232 | } |
| 233 | } |
| 234 | } |
| 235 | |
| 236 | void PeripheryManager_::playBootSound() |
| 237 | { |
nothing calls this directly
no test coverage detected