From bb2d3e87459670a6f315d9f54c73692241c9468a Mon Sep 17 00:00:00 2001 From: aceisace Date: Thu, 14 Apr 2022 17:47:16 +0200 Subject: [PATCH] add inky_run instead of using the installer to create one --- inky_run.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 inky_run.py diff --git a/inky_run.py b/inky_run.py new file mode 100644 index 0000000..50cf8fa --- /dev/null +++ b/inky_run.py @@ -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