| 305 | } |
| 306 | |
| 307 | void changeDeviceTypePrev() { |
| 308 | deviceType--; |
| 309 | if (deviceType < 1) deviceType = 26; |
| 310 | Serial.println("Device Type Prev: " + String(deviceType)); |
| 311 | setAdvertisingData(); |
| 312 | updateDisplay(); |
| 313 | } |
| 314 | |
| 315 | void changeAdvTypeNext() { |
| 316 | advType++; |
nothing calls this directly
no test coverage detected