Skip to content

Commit d84844c

Browse files
committed
Fixed missing syntax highlighting in some pages
1 parent b2da436 commit d84844c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Language/Functions/Digital IO/digitalRead.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Reads the value from a specified digital pin, either `HIGH` or `LOW`.
4949
// Describe what the example code is all about and add relevant code ►►►►► THIS SECTION IS MANDATORY ◄◄◄◄◄
5050
Sets pin 13 to the same value as pin 7, declared as an input.
5151

52-
//[source,arduino]
52+
[source,arduino]
5353
----
5454
int ledPin = 13; // LED connected to digital pin 13
5555
int inPin = 7; // pushbutton connected to digital pin 7

Language/Functions/Digital IO/digitalWrite.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Nothing
5858
// Describe what the example code is all about and add relevant code ►►►►► THIS SECTION IS MANDATORY ◄◄◄◄◄
5959
The code makes the digital pin 13 an `OUTPUT` and toggles it by alternating between `HIGH` and `LOW` at one second pace.
6060

61-
//[source,arduino]
61+
[source,arduino]
6262
----
6363
void setup()
6464
{

Language/Functions/Digital IO/pinMode.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Nothing
5353
=== Example Code
5454
The code makes the digital pin 13 `OUTPUT` and Toggles it `HIGH` and `LOW`
5555

56-
//[source,arduino]
56+
[source,arduino]
5757
----
5858
void setup()
5959
{

0 commit comments

Comments
 (0)