- You want the buzzer to sound continuously when the temperature is 80°F or above.
- You need the Arduino to take temperature readings every two seconds.
- Utilize a `while` loop for continuous temperature monitoring.
- Use `playTone` within an `if` statement to sound the buzzer for 2 seconds when the threshold is met.
- Implement `pause(2)` to set the measurement interval.
- https://www.mathworks.com/help/supportpkg/arduinoio/ref/arduino.html
- https://www.mathworks.com/help/supportpkg/arduinoio/ref/readvoltage.html
- https://www.mathworks.com/help/supportpkg/arduinoio/ref/playtone.html