Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Fab Academy 2023 Site
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Academany
Fab Academy
2023
Fab Academy 2023 Site
Commits
f7e8bcbc
Commit
f7e8bcbc
authored
2 years ago
by
Rodrigo Shiordia López
Browse files
Options
Downloads
Patches
Plain Diff
Update slides.html
parent
bc884ce3
No related branches found
No related tags found
No related merge requests found
Pipeline
#377006
passed
2 years ago
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
recitation/programming/slides.html
+3
-1
3 additions, 1 deletion
recitation/programming/slides.html
with
3 additions
and
1 deletion
recitation/programming/slides.html
+
3
−
1
View file @
f7e8bcbc
...
...
@@ -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.print
ln
("
Temperature
in
Celsius:
");
Serial.println
(
C
);
delay
(1000);
}
float
fahrenheitToCelsius
(
float
theValue
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment