ESP32 - Thonny+MicroPython+ESP32 继电器的使用 认真理解,能看懂 继电器默认为断开 from machine import Pin p13 = Pin(13, Pin.OUT) p13.value(1) # 吸合 #p13.value(0) # 断开