| 388 | } |
| 389 | |
| 390 | void changeDeviceTypePrev() { |
| 391 | deviceType--; |
| 392 | if (deviceType < 1) deviceType = 26; |
| 393 | Serial.println("Device Type Prev: " + String(deviceType)); |
| 394 | setAdvertisingData(); |
| 395 | updateDisplay(); |
| 396 | } |
| 397 | |
| 398 | void changeAdvTypeNext() { |
| 399 | advType++; |
nothing calls this directly
no test coverage detected