Hey guys, for some reason when watching my serial monitor for testing this code, i am receiving little question mark emoji looking characters. Any solutions???
int sequence[30];
int currentSize = 0;
void append(int value) {
sequence[currentSize++] = value;
}
void setup() {
randomSeed(analogRead(0));
Serial.begin(9600);
for(int i; i<10; i++){
append(random(3));
Serial.print(sequence[i]);
}
}