| 153 | } |
| 154 | |
| 155 | void saveGraphToEEPROM() { |
| 156 | EEPROM.begin(128); |
| 157 | for (byte i = 0; i < 128; i++) { |
| 158 | EEPROM.write(EEPROM_ADDRESS_SENSOR_ARRAY + i, sensorArray[i]); |
| 159 | } |
| 160 | EEPROM.commit(); |
| 161 | EEPROM.end(); |
| 162 | } |
| 163 | |
| 164 | void scannerSetup() { |
| 165 | Serial.begin(115200); |