| 404 | } |
| 405 | |
| 406 | void changeAdvTypePrev() { |
| 407 | advType--; |
| 408 | if (advType < 1) advType = 5; |
| 409 | Serial.println("Advertising Type Prev: " + String(advType)); |
| 410 | setAdvertisingData(); |
| 411 | updateDisplay(); |
| 412 | } |
| 413 | |
| 414 | void toggleAdvertising() { |
| 415 |
nothing calls this directly
no test coverage detected