const int speakerPin = 3;

// Fibonacci intervals (in milliseconds)
int intervals[] = { 21000, 13000, 8000, 5000, 3000, 2000, 1000, 1000};

void setup() {
  pinMode(speakerPin, OUTPUT); // Set the speaker pin as an output
  Serial.begin(9600); // Initialize serial communication at a baud rate of 9600
}

void loop() {
  for (int i = 0; i < 24; i++) { // Loop through the heartbeat intervals
    int interval = intervals[i]; // Get the current interval

    Serial.print("Playing heartbeat for ");
    Serial.print(interval / 1000.0); // Convert interval to seconds for readability
    Serial.println(" seconds...");

    // Simulate the "lub" sound of the heartbeat
    tone(speakerPin, 150, 100); // Play a 150Hz tone for 100 milliseconds
    delay(200); // Short pause between "lub" and "dub"

    // Simulate the "dub" sound of the heartbeat
    tone(speakerPin, 150, 100); // Play a 150Hz tone for 100 milliseconds
    delay(interval - 300); // Wait for the rest of the interval

    noTone(speakerPin); // Stop the tone
    delay(100); // Small delay between beats
  }

  while (true); // Stop the loop (remove this line to repeat the loop)
}
nano:12
nano:11
nano:10
nano:9
nano:8
nano:7
nano:6
nano:5
nano:4
nano:3
nano:2
nano:GND.2
nano:RESET.2
nano:0
nano:1
nano:13
nano:3.3V
nano:AREF
nano:A0
nano:A1
nano:A2
nano:A3
nano:A4
nano:A5
nano:A6
nano:A7
nano:5V
nano:RESET
nano:GND.1
nano:VIN
nano:12.2
nano:5V.2
nano:13.2
nano:11.2
nano:RESET.3
nano:GND.3
bz1:1
bz1:2