Thonny-IDE y MicroPython ESP32

By Thomas Debrunner

Elevator Pitch

print(“"”blink.py Thonny-IDE MicroPython ESP32 Dragrace Time System and Blink-Demo thomas.debrunner@bitopen.ch “””)

import time import machine

led = machine.Pin(2, machine.Pin.OUT)

while True: value = not led.value() led.value(value) time.sleep(0.5) # 1 Hz

Description

print(“"”blink.py Thonny-IDE MicroPython ESP32 Dragrace Time System and Blink-Demo OpenSaturday Santiago 2022-09-03 BarCamp Santiago RD 2022-11-26 thomas.debrunner@bitopen.ch “””) # https://www.instagram.com/p/CgeaqTqLQQ4/?igshid=MDJmNzVkMjY= # https://www.facebook.com/thomas.debrunner # https://www.instagram.com/thomas.debrunner # https://www.linkedin.com/in/thomasdebrunner # https://www.linkedin.com/posts/thomasdebrunner_war-13-1482022-am-motorrad-offroad-dragrace-activity-6966687607762079744-D2Jc # https://github.com/thonny/thonny/releases # https://micropython.org/download/esp32 # https://docs.micropython.org/en/latest/esp32/tutorial/intro.html

import time import machine

led = machine.Pin(2, machine.Pin.OUT)

while True: value = not led.value() led.value(value) time.sleep(0.5) # 1 Hz

Notes

Soy Thomas Debrunner de Suiza y vivo en misma ciudad Puerto Plata Republic Dominicana para siempre.

Need just a/my Laptop with a Webbrowser and maybe Internet plus Thonny-IDE with USB access installed. Will bring some ESP32 blink demo boards…