The duty cycle is incorrect after changing the frequency of a variable frequency PWMOut. ```python piezo.frequency = int(tone) piezo.duty_cycle = 2 ** 15 # half of max time.sleep(duration) piezo.duty_cycle = 0 ```