allowing directory import

This commit is contained in:
talksik
2023-04-27 14:06:41 -07:00
parent 3b054734ee
commit 531c82f006
+7 -1
View File
@@ -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)