From bc0cd6cb52138fd61f1a5c5fa523bf2d82ad4b89 Mon Sep 17 00:00:00 2001 From: David Todd Date: Sun, 26 Jan 2020 17:18:24 -0600 Subject: [PATCH] get things working --- boot.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 boot.py diff --git a/boot.py b/boot.py new file mode 100644 index 0000000..b709bbd --- /dev/null +++ b/boot.py @@ -0,0 +1,23 @@ +# This file is executed on every boot (including wake-boot from deepsleep) +# Be careful about doing things that loop here, you may have to reinstall the firmware + +# import esp +# esp.osdebug(None) + +# Initalize the board +from board import * + +# Class that contains display methods, animations, etc +from pixels import Pixo +# Blank the display +Pixo().clear() + +# Small ease of use methods +from helpers import * + +# Setup wifi connection +import wifi + +# Start the web console for easier file management +import webrepl +webrepl.start()