print("Hello, ESP32-S3!")
for _ in range(3): # try 3 times
try:
print('pasada 1')
#break # as soon as it works, break out of the loop
except Exception as e:
print('error: ', e)
continue # otherwise, try again
else: # if the loop exited normally, e.g. if all 3 attempts failed
pass
print('sale del for')