int buzzerpin = 7;
int dl1 = 400;
int dl2 = dl1*2;
int dl3 = dl1*3;
void setup() {
pinMode(buzzerpin,OUTPUT);
}
void loop() {
tone(buzzerpin,350, dl2); //ග
tone(buzzerpin,370, dl1); //ම
tone(buzzerpin,415, dl2); //ප
tone(buzzerpin,350, dl1); //ග
tone(buzzerpin,370, dl2); //ම
tone(buzzerpin,350, dl1); //ග
tone(buzzerpin,311, dl3); //රි
tone(buzzerpin,350, dl2); //ග
tone(buzzerpin,370, dl1); //ම
tone(buzzerpin,415, dl2); //ප
tone(buzzerpin,466, dl1); //ධ
tone(buzzerpin,523, dl1*4); //නි
noTone(buzzerpin);
delay(250);
tone(buzzerpin,466,dl2); //ධ
tone(buzzerpin,523, dl1); //නි
tone(buzzerpin,554,dl2); //ස'
tone(buzzerpin,466, dl1); //ධ
tone(buzzerpin,415, dl2); //ප
tone(buzzerpin,370, dl1/2); //ම
tone(buzzerpin,350, dl1); //ග
tone(buzzerpin,311, dl3); //රි
tone(buzzerpin,415, dl2); //ප
tone(buzzerpin,311, dl1); //රි
tone(buzzerpin,350, dl2); //ග
tone(buzzerpin,311, dl1); //රි
tone(buzzerpin,277, dl1*5); //ස
noTone(buzzerpin);
delay(1000);
}