| 313 | } |
| 314 | |
| 315 | void changeAdvTypeNext() { |
| 316 | advType++; |
| 317 | if (advType > 5) advType = 1; |
| 318 | Serial.println("Advertising Type Next: " + String(advType)); |
| 319 | setAdvertisingData(); |
| 320 | updateDisplay(); |
| 321 | } |
| 322 | |
| 323 | void changeAdvTypePrev() { |
| 324 | advType--; |
nothing calls this directly
no test coverage detected