int estrellas = 1;
void setup() {
Serial.begin(9600);
}
void loop() {
for( int cuenta = 1; cuenta < estrellas; cuenta = cuenta+1 ){
Serial.print("*");
}
Serial.println("");
estrellas=estrellas +1;
if (estrellas> 10){estrellas = 1;}
delay(200);
}