Skip to content
Snippets Groups Projects
Commit f7e8bcbc authored by Rodrigo Shiordia López's avatar Rodrigo Shiordia López
Browse files

Update slides.html

parent bc884ce3
No related branches found
No related tags found
No related merge requests found
Pipeline #377006 passed
......@@ -260,6 +260,7 @@ void setup() {
void loop() {
Serial.print("Please enter temperature in Fahrenheit: ");
delay(1000);
while (Serial.available() == 0) {
}
......@@ -268,8 +269,9 @@ void loop() {
float C = fahrenheitToCelsius(F);
Serial.print("Temperature in Celsius: ");
Serial.println("Temperature in Celsius: ");
Serial.println(C);
delay(1000);
}
float fahrenheitToCelsius(float theValue) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment