| 396 | } |
| 397 | |
| 398 | void changeAdvTypeNext() { |
| 399 | advType++; |
| 400 | if (advType > 5) advType = 1; |
| 401 | Serial.println("Advertising Type Next: " + String(advType)); |
| 402 | setAdvertisingData(); |
| 403 | updateDisplay(); |
| 404 | } |
| 405 | |
| 406 | void changeAdvTypePrev() { |
| 407 | advType--; |
nothing calls this directly
no test coverage detected