add inky_run instead of using the installer to create one

This commit is contained in:
aceisace 2022-04-14 17:47:16 +02:00
parent cbfa2b5618
commit bb2d3e8745

7
inky_run.py Normal file
View File

@ -0,0 +1,7 @@
#!python3
from inkycal import Inkycal # Import Inkycal
inky = Inkycal(render=True) # Initialise Inkycal
# If your settings.json file is not in /boot, use the full path: inky = Inkycal('path/to/settings.json', render=True)
inky.test() # test if Inkycal can be run correctly, running this will show a bit of info for each module
inky.run() # If there were no issues, you can run Inkycal nonstop