10000 Use correct markup on variable name reference in "Writing a Library f… · AdmiralPuni/arduino-docs-content@915e81f · GitHub
[go: up one dir, main page]

Skip to content

Commit 915e81f

Browse files
per1234marqdevx
andauthored
Use correct markup on variable name reference in "Writing a Library for Arduino"
Co-authored-by: Pablo Marquínez Ferrándiz <pablomarqfer@gmail.com>
1 parent 553bc3a commit 915e81f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/learn/08.contributions/03.arduino-creating-library-guide/arduino-creating-library-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ void dash()
4848

4949
If you run this sketch, it will flash out the code for SOS (a distress call) on pin 13.
5050

51-
The sketch has a few different parts that we'll need to bring into our library. First, of course, we have the `dot()` and `dash()` functions that do the actual blinking. Second, there's the **pin** variable which the functions use to determine which pin to use. Finally, there's the call to `pinMode()` that initializes the pin as an output.
51+
The sketch has a few different parts that we'll need to bring into our library. First, of course, we have the `dot()` and `dash()` functions that do the actual blinking. Second, there's the `pin` variable which the functions use to determine which pin to use. Finally, there's the call to `pinMode()` that initializes the pin as an output.
5252

5353
Let's start turning the sketch into a library!
5454

0 commit comments

Comments
 (0)
0