Skip to content

timeout waiting for first EOF reception #116

@MaxKru

Description

@MaxKru

hi,
i try to switch from thonny to vsc, i managed to get a program working in vsc
which is:

"""
from machine import Pin
from time import sleep

led1 = Pin(17,Pin.OUT,value = 0)

btn = Pin(16,Pin.IN,Pin.PULL_UP)

print(led1)

while True:
if btn.value() == 1:
led1.value(1)
else:
led1.value(0)
"""

the problem im running into is: after pressing the button btn, the programm loop is cancelt
and the programm is closed

the command im using is, ampy --port COM3 run blinkmicropython.py
i also tried [..] run -n

i would like to keep this programm running forever, and not cancel it after one runthrough.
how can i accomplish this?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions