I'm sending serial data from an arduino to an android device.
Here is the code I have for the arduino sketch:
void setup(){
Serial.begin(9600);
delay(10000);
Serial.println(4);
delay(2000);
Serial.println(7);
delay(2000);
Serial.println(7);
delay(2000);
Serial.println(5);
}
void loop()
{
}
And what the data that prints on my Android device begins:
[53, 13, 10, 0, 0...] with the rest of the numbers being zero. Now the size of the array I'm sending this data to is 1024 so I know why it keeps printing zeros, but what is going on with the first couple of numbers?