From 608b5d51de8be37f88bccad0a59b35311a9fd2af Mon Sep 17 00:00:00 2001 From: William Batts III <69988679+Killaship@users.noreply.github.com> Date: Sun, 20 Nov 2022 14:31:10 -0500 Subject: [PATCH] Fix some grammatical errors in ReadAnalogVoltage.md --- .../01.basics/ReadAnalogVoltage/ReadAnalogVoltage.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/built-in-examples/01.basics/ReadAnalogVoltage/ReadAnalogVoltage.md b/content/built-in-examples/01.basics/ReadAnalogVoltage/ReadAnalogVoltage.md index ae451879e2..293b4d1ab1 100644 --- a/content/built-in-examples/01.basics/ReadAnalogVoltage/ReadAnalogVoltage.md +++ b/content/built-in-examples/01.basics/ReadAnalogVoltage/ReadAnalogVoltage.md @@ -36,7 +36,7 @@ The microcontroller of the board has a circuit inside called an *analog-to-digit ### Code -In the program below, the very first thing that you do will in the setup function is to begin serial communications, at 9600 bits of data per second, between your board and your computer with the line: +In the program below, the very first thing you'll do will be in the setup function, to begin serial communication at 9600 bits of data per second, between your board and your computer with the line: `Serial.begin(9600);` @@ -48,7 +48,7 @@ To change the values from 0-1023 to a range that corresponds to the voltage the `float voltage= sensorValue * (5.0 / 1023.0);` -Finally, you need to print this information to your serial window as. You can do this with the command [Serial.println](https://www.arduino.cc/en/Serial/Println)() in your last line of code: +Finally, you need to print this information to your serial monitor. You can do this with the command [Serial.println](https://www.arduino.cc/en/Serial/Println)() in your last line of code: `Serial.println(voltage)` @@ -62,4 +62,4 @@ You can find more basic tutorials in the [built-in examples](/built-in-examples) You can also explore the [language reference](https://www.arduino.cc/reference/en/), a detailed collection of the Arduino programming language. -*Last revision 2015/07/29 by SM* \ No newline at end of file +*Last revision Nov. 20, 2022 by Killaship*