From 2779beb9b80181aa3c697385a883a73387189093 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karl=20S=C3=B6derby?= <35461661+karlsoderby@users.noreply.github.com> Date: Thu, 10 Oct 2024 12:02:32 +0200 Subject: [PATCH] Update 02.intro-to-micropython.md --- .../course/02.introduction-python/02.intro-to-micropython.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/micropython/02.micropython-course/course/02.introduction-python/02.intro-to-micropython.md b/content/micropython/02.micropython-course/course/02.introduction-python/02.intro-to-micropython.md index ec5b1ad155..2d7f56f016 100644 --- a/content/micropython/02.micropython-course/course/02.introduction-python/02.intro-to-micropython.md +++ b/content/micropython/02.micropython-course/course/02.introduction-python/02.intro-to-micropython.md @@ -63,7 +63,7 @@ If there is anything wrong with your code, you will receive an error. If not, it ## Loops -If you have plenty of experience in Arduino, you will be used to the concept of a **loop**. If you don't, you can read more about it [here](www.arduino.cc/reference/en/language/structure/sketch/loop/). This is not a requirement when using MicroPython. You can write a program that either just runs once, or continues to loop over and over. +If you have previous experience with Arduino, you may know the concept of a **loop**. This is not a requirement when using MicroPython. You can write a program that either just runs once, or continues to loop over and over. To make a program loop continuously, you will need to use a **while loop** inside your script.