Support Thread for Seeeduino

Hi,
Perbaps this code can work well:

void setup() 
{ 
  Serial.begin(57600);
  int bytes[]={139, 2, 0, 0 };
  for(int i=0; i <4; ++i)
  {
    Serial.println(bytes[i],DEC);
  }
} 

void loop() 
{ 
} 

Albert