GuyCarver-MicroPython/esp8266/boot.py

16 wiersze
184 B
Python
Czysty Zwykły widok Historia

2018-02-18 14:10:50 +00:00
# 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 *