Skip to content

Fixed missing syntax highlighting in some pages #365

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 3, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Language/Functions/Digital IO/digitalRead.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Reads the value from a specified digital pin, either `HIGH` or `LOW`.
// Describe what the example code is all about and add relevant code ►►►►► THIS SECTION IS MANDATORY ◄◄◄◄◄
Sets pin 13 to the same value as pin 7, declared as an input.

//[source,arduino]
[source,arduino]
----
int ledPin = 13; // LED connected to digital pin 13
int inPin = 7; // pushbutton connected to digital pin 7
Expand Down
2 changes: 1 addition & 1 deletion Language/Functions/Digital IO/digitalWrite.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Nothing
// Describe what the example code is all about and add relevant code ►►►►► THIS SECTION IS MANDATORY ◄◄◄◄◄
The code makes the digital pin 13 an `OUTPUT` and toggles it by alternating between `HIGH` and `LOW` at one second pace.

//[source,arduino]
[source,arduino]
----
void setup()
{
Expand Down
2 changes: 1 addition & 1 deletion Language/Functions/Digital IO/pinMode.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Nothing
=== Example Code
The code makes the digital pin 13 `OUTPUT` and Toggles it `HIGH` and `LOW`

//[source,arduino]
[source,arduino]
----
void setup()
{
Expand Down