int randomarray[666];
void setup() {
Serial.begin(9600);
for (int i=0; i<666; i++){
randomarray[i]=random(-16383,16383);
Serial.println(randomarray[i]*2);
}
}
void loop() {
// put your main code here, to run repeatedly:
}
int randomarray[666];
void setup() {
Serial.begin(9600);
for (int i=0; i<666; i++){
randomarray[i]=random(-16383,16383);
Serial.println(randomarray[i]*2);
}
}
void loop() {
// put your main code here, to run repeatedly:
}