Adafruit_Python_Shell/test.py
Melissa LeBlanc-Williams 69d333ff9b Rename read func
2022-11-10 12:44:43 -08:00

16 lines
No EOL
381 B
Python

try:
from adafruit_shell import Shell
except ImportError:
raise RuntimeError("The library 'adafruit_shell' was not found. To install, try typing: sudo pip3 install adafruit-python-shell")
shell = Shell()
shell.group="Blinka"
def main():
#shell.clear()
print("Running test")
shell.run_command("./test.sh")
# Main function
if __name__ == "__main__":
main()