Skip to content

Instantly share code, notes, and snippets.

@beezly
beezly / main.py
Created January 13, 2019 18:19
ESP32 Hardware Interrupts in micropython
import machine
import sys
import utime
# Error buffer for inside ISRs
import micropython
micropython.alloc_emergency_exception_buf(100)
class Run():
def __init__(self):