#include <EEPROM.h>
unsigned long currMicros, prevMicros, interval;
int nowPos[200];
int readEEPROM[200];
int num;
void setup() {
Serial.begin(115200);
while (!Serial) {}
Serial.println("Starting ....");
prevMicros = micros();
for (byte n = 0; n < 200; n++) {
nowPos[n] = n;
}
EEPROM.put(0, nowPos);
currMicros = micros();
interval = currMicros - prevMicros;
Serial.print(interval);
}
void loop() {
// put your main code here, to run repeatedly:
}