play() failed because the user didn't interact with the document first code example
Example 1: failed because the user didn't interact with the document first
autoplay="true"
Example 2: RuntimeError: You must setup() the GPIO channel first
The line that reads
if GPIO.input(23 == False):
Should be
if GPIO.input(23) == False: