int i = 200; void setup() { } void loop() { for (i; i < 650; i++) { tone(11, i); delay(10); } for (i ; i > 200; i--) { tone(11, i); delay(10); } }