| 87 | } |
| 88 | |
| 89 | int32_t I2cScannerApp::getLastBusIndex() { |
| 90 | auto prefs = Preferences("i2c_scanner"); |
| 91 | int32_t index = 0; |
| 92 | prefs.optInt32(PREFERENCES_BUS_INDEX_KEY, index); |
| 93 | return index; |
| 94 | } |
| 95 | |
| 96 | // region Lifecycle |
| 97 |
nothing calls this directly
no test coverage detected