| 297 | } |
| 298 | |
| 299 | void changeDeviceTypeNext() { |
| 300 | deviceType++; |
| 301 | if (deviceType > 26) deviceType = 1; |
| 302 | Serial.println("Device Type Next: " + String(deviceType)); |
| 303 | setAdvertisingData(); |
| 304 | updateDisplay(); |
| 305 | } |
| 306 | |
| 307 | void changeDeviceTypePrev() { |
| 308 | deviceType--; |
nothing calls this directly
no test coverage detected