GuyCarver-MicroPython/esp8266/boot.py

16 wiersze
184 B
Python

# This file is executed on every boot (including wake-boot from deepsleep)
import esp
import gc
import webrepl
esp.osdebug(None)
webrepl.start()
gc.collect()
from main import *