Skip to content

Commit bebe300

Browse files
committed
Added adc control to setup(). Added PBA heart rate algorithm.
1 parent 3a1b51f commit bebe300

17 files changed

+552
-2708
lines changed

.gitignore

+195-36
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,206 @@
1+
#################
2+
## SparkFun Useful stuff
3+
#################
4+
5+
## AVR Development
6+
*.eep
7+
*.elf
8+
*.lst
9+
*.lss
10+
*.sym
11+
*.d
12+
*.o
13+
*.srec
14+
*.map
15+
16+
## Notepad++ backup files
17+
*.bak
18+
19+
## BOM files
20+
*bom*
21+
22+
#################
23+
## Eclipse
24+
#################
25+
26+
*.pydevproject
27+
.project
28+
.metadata
29+
bin/
30+
tmp/
31+
*.tmp
32+
*.bak
33+
*.swp
34+
*~.nib
35+
local.properties
36+
.classpath
37+
.settings/
38+
.loadpath
39+
40+
# External tool builders
41+
.externalToolBuilders/
42+
43+
# Locally stored "Eclipse launch configurations"
44+
*.launch
45+
46+
# CDT-specific
47+
.cproject
48+
49+
# PDT-specific
50+
.buildpath
51+
52+
53+
#############
54+
## Eagle
55+
#############
56+
57+
# Ignore the board and schematic backup files and lock files
58+
*.b#?
59+
*.s#?
60+
*.l#?
61+
*.lck
62+
63+
64+
#################
65+
## Visual Studio
66+
#################
67+
68+
## Ignore Visual Studio temporary files, build results, and
69+
## files generated by popular Visual Studio add-ons.
70+
71+
# User-specific files
72+
*.suo
73+
*.user
74+
*.sln.docstates
75+
76+
# Build results
77+
[Dd]ebug/
78+
[Rr]elease/
79+
*_i.c
80+
*_p.c
81+
*.ilk
82+
*.meta
83+
*.obj
84+
*.pch
85+
*.pdb
86+
*.pgc
87+
*.pgd
88+
*.rsp
89+
*.sbr
90+
*.tlb
91+
*.tli
92+
*.tlh
93+
*.tmp
94+
*.vspscc
95+
.builds
96+
*.dotCover
97+
98+
## TODO: If you have NuGet Package Restore enabled, uncomment this
99+
#packages/
100+
101+
# Visual C++ cache files
102+
ipch/
103+
*.aps
104+
*.ncb
105+
*.opensdf
106+
*.sdf
107+
108+
# Visual Studio profiler
109+
*.psess
110+
*.vsp
111+
112+
# ReSharper is a .NET coding add-in
113+
_ReSharper*
114+
115+
# Installshield output folder
116+
[Ee]xpress
117+
118+
# DocProject is a documentation generator add-in
119+
DocProject/buildhelp/
120+
DocProject/Help/*.HxT
121+
DocProject/Help/*.HxC
122+
DocProject/Help/*.hhc
123+
DocProject/Help/*.hhk
124+
DocProject/Help/*.hhp
125+
DocProject/Help/Html2
126+
DocProject/Help/html
127+
128+
# Click-Once directory
129+
publish
130+
131+
# Others
132+
[Bb]in
133+
[Oo]bj
134+
sql
135+
TestResults
136+
*.Cache
137+
ClientBin
138+
stylecop.*
139+
~$*
140+
*.dbmdl
141+
Generated_Code #added for RIA/Silverlight projects
142+
143+
# Backup & report files from converting an old project file to a newer
144+
# Visual Studio version. Backup files are not needed, because we have git ;-)
145+
_UpgradeReport_Files/
146+
Backup*/
147+
UpgradeLog*.XML
148+
149+
150+
############
151+
## Windows
152+
############
153+
1154
# Windows image file caches
2155
Thumbs.db
3-
ehthumbs.db
4156

5157
# Folder config file
6158
Desktop.ini
7159

8-
# Recycle Bin used on file shares
9-
$RECYCLE.BIN/
10160

11-
# Windows Installer files
12-
*.cab
13-
*.msi
14-
*.msm
15-
*.msp
161+
#############
162+
## Mac OS
163+
#############
16164

17-
# Windows shortcuts
18-
*.lnk
165+
.DS_Store
19166

20-
# =========================
21-
# Operating System Files
22-
# =========================
23167

24-
# OSX
25-
# =========================
168+
#############
169+
## Linux
170+
#############
26171

27-
.DS_Store
28-
.AppleDouble
29-
.LSOverride
30-
31-
# Thumbnails
32-
._*
33-
34-
# Files that might appear in the root of a volume
35-
.DocumentRevisions-V100
36-
.fseventsd
37-
.Spotlight-V100
38-
.TemporaryItems
39-
.Trashes
40-
.VolumeIcon.icns
41-
42-
# Directories potentially created on remote AFP share
43-
.AppleDB
44-
.AppleDesktop
45-
Network Trash Folder
46-
Temporary Items
47-
.apdisk
172+
# backup files (*.bak on Win)
173+
*~
174+
175+
176+
#############
177+
## Python
178+
#############
179+
180+
*.py[co]
181+
182+
# Packages
183+
*.egg
184+
*.egg-info
185+
dist
186+
build
187+
eggs
188+
parts
189+
bin
190+
var
191+
sdist
192+
develop-eggs
193+
.installed.cfg
194+
195+
# Installer logs
196+
pip-log.txt
197+
198+
# Unit test / coverage reports
199+
.coverage
200+
.tox
201+
202+
#Translations
203+
*.mo
204+
205+
#Mr Developer
206+
.mr.developer.cfg

0 commit comments

Comments
 (0)