This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
en:iot-open:introductiontoembeddedprogramming2:cppfundamentals:loops [2023/11/21 22:22] – pczekalski | en:iot-open:introductiontoembeddedprogramming2:cppfundamentals:loops [2023/11/23 10:20] (current) – pczekalski | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Loops ====== | ====== Loops ====== | ||
+ | {{: | ||
Loops are critical to control flow structures in programming. They allow executing statements or some part of the program repeatedly to process elements of data tables and texts, making iterative calculations and data analysis. In the world of microcontrollers, | Loops are critical to control flow structures in programming. They allow executing statements or some part of the program repeatedly to process elements of data tables and texts, making iterative calculations and data analysis. In the world of microcontrollers, | ||
This is clearly visible in the Arduino programming model, with one part of the code executed once after power-on '' | This is clearly visible in the Arduino programming model, with one part of the code executed once after power-on '' |