| 321 | } |
| 322 | |
| 323 | void changeAdvTypePrev() { |
| 324 | advType--; |
| 325 | if (advType < 1) advType = 5; |
| 326 | Serial.println("Advertising Type Prev: " + String(advType)); |
| 327 | setAdvertisingData(); |
| 328 | updateDisplay(); |
| 329 | } |
| 330 | |
| 331 | void toggleAdvertising() { |
| 332 | if (isAdvertising) { |
nothing calls this directly
no test coverage detected