write a ardino nano code to play buzzer whenever any object comes 200 meter away from ultrasonic sensor if not then off
Script function play_buzzer(object_distance, threshold): if(object_distance <= threshold): return "ON" else: return "OFF" play_buzzer(0.1, 0.2)