Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
HealthTech
Throb Alert
Commits
5e846bbf
Commit
5e846bbf
authored
Jul 21, 2019
by
PENUMARTHY VYBHAVI
Browse files
Add new file
parent
d3846560
Changes
1
Hide whitespace changes
Inline
Side-by-side
pulse.ino
0 → 100644
View file @
5e846bbf
int
sensorPin
=
A0
;
void
setup
()
{
Serial
.
begin
(
9600
);
}
void
loop
()
{
// put your main code here, to run repeatedly:
int
pulseValue
=
0
;
pulseValue
=
analogRead
(
sensorPin
);
Serial
.
println
(
pulseValue
);
delay
(
2000
);
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment