diff --git a/push_to_record_and_play.py b/push_to_record_and_play.py index 2e87b90..454d0ac 100644 --- a/push_to_record_and_play.py +++ b/push_to_record_and_play.py @@ -1,9 +1,15 @@ # this program will record audio while the button is pressed # it will then play the audio back to the user from memory -import audio.audio import RPi.GPIO as GPIO +# importing sys +import sys +# adding Folder_2/subfolder to the system path +sys.path.insert(0, '/home/talksik/rpi-random-projects/audio') + +import audio + BUTTON = 17 GPIO.setmode(GPIO.BCM)