In [1]:
%run ./dep/scripts/pan.py
print("Press Shift + Enter to activate cell")
print("\nUse the Slider to set a Value and Click the Sonify Me Button to play a sonification.")
print("\nTry to explore the full range of values and listen carefully:")
print("Notice the variation in pulse rate and panning (left/right) at different values.")
interact (f, percentage=(0,100,1))
button = widgets.Button(description="Sonify Me!")
display(button)
button.on_click(on_button_clicked)
print("You will be tested on your ability to judge the value of sonifications on this scale.")
print("When you are ready, press the Space Bar to proceed.")
In [ ]: