Skip to content

Instantly share code, notes, and snippets.

@tommylees112
Created March 27, 2021 18:04
Show Gist options
  • Save tommylees112/b1b6019887c60ef745340132a4f98761 to your computer and use it in GitHub Desktop.
Save tommylees112/b1b6019887c60ef745340132a4f98761 to your computer and use it in GitHub Desktop.
script to run CumulusMX in the background (has to work on python2.7)
# outF = open("run_cumulusMX.sh", "w")
# line = “mono /home/pi/CumulusMX/CumulusMX.exe &”
# outF.write(line)
# outF.close()
import os
os.system("mono /home/pi/CumulusMX/CumulusMX.exe &")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment