@@ -270,16 +270,21 @@ Compact version of the [Arduino Language Reference](https://www.arduino.cc/refer
270
270
271
271
### Variable Scope & Qualifiers
272
272
273
+ | Method & Parameter | Description |
274
+ | ------------------ | ------------------------------------------------- |
275
+ | ` const ` | Qualifier to define constants. |
276
+ | ` scope ` | Not a specific keyword; refers to variable scope. |
277
+ | ` static ` | Qualifier to declare static variables. |
278
+ | ` volatile ` | Qualifier to declare volatile variables. |
279
+
280
+ ### Utilities
281
+
273
282
| Method & Parameter | Description |
274
283
| ------------------ | ---------------------------------------------------------- |
275
- | ` const ` | Qualifier to define constants. |
276
- | ` scope ` | Not a specific keyword; refers to variable scope. |
277
- | ` static ` | Qualifier to declare static variables. |
278
- | ` volatile ` | Qualifier to declare volatile variables. |
279
- | ` Utilities ` | Miscellaneous utility keywords. |
280
284
| ` PROGMEM ` | Qualifier to store data in program memory. |
281
285
| ` sizeof() ` | Operator to determine the size of a data type or variable. |
282
286
287
+ ## Structure
283
288
284
289
### Sketch
285
290
@@ -307,6 +312,7 @@ Compact version of the [Arduino Language Reference](https://www.arduino.cc/refer
307
312
308
313
309
314
### Further Syntax
315
+
310
316
| Method & Parameter | Description |
311
317
| -------------------------- | -------------------------------------------------- |
312
318
| ` #define (define) ` | Macro definition for code substitution. |
@@ -318,6 +324,7 @@ Compact version of the [Arduino Language Reference](https://www.arduino.cc/refer
318
324
319
325
320
326
### Arithmetic Operators
327
+
321
328
| Method & Parameter | Description |
322
329
| ------------------------- | -------------------------------------------------------- |
323
330
| ` % (remainder) ` | Modulo operator for finding the remainder of a division. |
0 commit comments