diff --git a/push_to_record_and_play.py b/push_to_record_and_play.py index 31d8240..8ff57df 100644 --- a/push_to_record_and_play.py +++ b/push_to_record_and_play.py @@ -21,10 +21,8 @@ while True: state = GPIO.input(BUTTON) if state: - print("button: OFF") if audioInstance.isRecording(): audioInstance.stopRecord(play=False) else: - print("button: ON") if not audioInstance.isRecording(): audioInstance.startRecord()