Skip to content
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

Team13 Tutorial - Reading Battery Charge Level #2

Open
wants to merge 53 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
9f30952
Update TEMPLATE.md
madelinefruin Nov 20, 2024
e4955a9
Merge pull request #1 from madelinefruin/madelinefruin-patch-1
madelinefruin Nov 20, 2024
50c29ce
Update TEMPLATE.md
madelinefruin Nov 20, 2024
07e683e
Merge pull request #2 from madelinefruin/madelinefruin-patch-2
madelinefruin Nov 20, 2024
ef1762e
Create README.md
madelinefruin Nov 20, 2024
ed41222
Update TEMPLATE.md
madelinefruin Nov 20, 2024
55d3275
Update TEMPLATE.md
madelinefruin Nov 20, 2024
136c256
Update TEMPLATE.md
madelinefruin Nov 20, 2024
5cc7db8
Update TEMPLATE.md
madelinefruin Nov 20, 2024
2cb4ad3
Update TEMPLATE.md
madelinefruin Nov 20, 2024
6f6cedd
Update TEMPLATE.md
madelinefruin Nov 20, 2024
9a548d6
Update TEMPLATE.md
madelinefruin Nov 20, 2024
026c477
Update TEMPLATE.md
madelinefruin Nov 20, 2024
c76dcfd
Update TEMPLATE.md
madelinefruin Nov 20, 2024
cb54210
Update TEMPLATE.md
madelinefruin Nov 20, 2024
31fc14e
Update TEMPLATE.md
madelinefruin Nov 20, 2024
7dd1a94
Add files via upload
madelinefruin Nov 20, 2024
69e2f69
Add files via upload
madelinefruin Nov 20, 2024
95c5d3e
Update TEMPLATE.md
madelinefruin Nov 20, 2024
5e0ed82
Update TEMPLATE.md
madelinefruin Nov 20, 2024
2aa43ed
Update TEMPLATE.md
madelinefruin Nov 20, 2024
794e53e
Update TEMPLATE.md
madelinefruin Nov 20, 2024
e43fd84
Update TEMPLATE.md
madelinefruin Nov 20, 2024
228bc0d
Update TEMPLATE.md
madelinefruin Nov 20, 2024
c9bac50
Update TEMPLATE.md
madelinefruin Nov 20, 2024
54ecd2d
Update TEMPLATE.md
madelinefruin Nov 20, 2024
da0856f
Update TEMPLATE.md
madelinefruin Nov 20, 2024
5b0f5a6
Update TEMPLATE.md
madelinefruin Nov 20, 2024
6e292f5
Update TEMPLATE.md
madelinefruin Nov 20, 2024
9b48e62
Update TEMPLATE.md
madelinefruin Nov 20, 2024
8bf5ec6
Update TEMPLATE.md
wluong101 Nov 21, 2024
b0ed4c0
Update TEMPLATE.md
wluong101 Nov 21, 2024
c085f21
Update TEMPLATE.md
wluong101 Nov 21, 2024
97b5fa9
Update TEMPLATE.md
madelinefruin Nov 21, 2024
13cdb8e
Add files via upload
wluong101 Nov 21, 2024
c350c2f
Update TEMPLATE.md
wluong101 Nov 21, 2024
9a243ee
Add files via upload
wluong101 Nov 21, 2024
0a3a792
Update TEMPLATE.md
madelinefruin Nov 21, 2024
52de971
Update TEMPLATE.md
wluong101 Nov 21, 2024
59b1dd5
Merge pull request #3 from madelinefruin/wluong101-patch-1
wluong101 Nov 21, 2024
5ddda56
Add files via upload
madelinefruin Nov 21, 2024
3ce225a
Update TEMPLATE.md
madelinefruin Nov 21, 2024
164f144
Update TEMPLATE.md
madelinefruin Nov 21, 2024
523885e
Update TEMPLATE.md
wluong101 Nov 21, 2024
b3f8b79
Update TEMPLATE.md
wluong101 Nov 21, 2024
9472932
Update TEMPLATE.md
wluong101 Nov 21, 2024
d7e491c
Update TEMPLATE.md
madelinefruin Nov 22, 2024
d140a75
Update TEMPLATE.md
madelinefruin Nov 22, 2024
e0d9da1
Update TEMPLATE.md
madelinefruin Nov 22, 2024
256709f
Update TEMPLATE.md
madelinefruin Nov 22, 2024
209f569
Update TEMPLATE.md
madelinefruin Nov 22, 2024
437c5e9
Update TEMPLATE.md
madelinefruin Nov 22, 2024
08db9cc
Rename TEMPLATE.md to Team13Tutorial.md
madelinefruin Nov 26, 2024
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
Prev Previous commit
Next Next commit
Update TEMPLATE.md
madelinefruin authored Nov 20, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 794e53e9ed871df57481548600f95489ca4882eb
2 changes: 1 addition & 1 deletion TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -78,7 +78,7 @@ about the technical skills
If you've taken a look at the battery we gave you, you might notice that it says 3.7V on it. The maximum voltage input for the ESP32 is 3.3V, so we need to find a way to decrease the voltage from the battery, we can do this with a <b>voltage divider</b>.

A voltage divider is a passive linear circuit made up of two resistors, although sometimes more are used to get a specific resistance value.
<!--img src = "voltagedivider.png" alt="Voltage Divider Schematic and Equation"-->
<img src = "voltagedivider.png" alt="Voltage Divider Schematic and Equation">

We have given you two 47kΩ resistors, so the output voltage will be 3.7V * 47kΩ/(47kΩ + 47kΩ) = 1.85V.