micropy-light/code/boot.py

8 lines
160 B
Python
Raw Normal View History

2018-09-13 17:45:22 +02:00
# This file is executed on every boot (including wake-boot from deepsleep)
#import esp
#esp.osdebug(None)
import gc
2018-11-18 10:28:07 +01:00
import webrepl
webrepl.start()
2018-09-13 17:45:22 +02:00
gc.collect()