From 531c82f006872d0243fb551032f95dfba22289ed Mon Sep 17 00:00:00 2001 From: talksik Date: Thu, 27 Apr 2023 14:06:41 -0700 Subject: [PATCH] allowing directory import --- push_to_record_and_play.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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)