mirror of
https://github.com/c0de-archive/pixoPython.git
synced 2024-12-21 21:12:39 +00:00
get things working
This commit is contained in:
parent
a4342f45e9
commit
bc0cd6cb52
23
boot.py
Normal file
23
boot.py
Normal file
@ -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()
|
Loading…
Reference in New Issue
Block a user