Skip to content

Commit 0d4a6e7

Browse files
committed
Revision 11 changes
Updated labels from R/W/B to +/-/C and moved temp sensor pins down away from standoff.
1 parent 3b4e441 commit 0d4a6e7

File tree

5 files changed

+329
-148
lines changed

5 files changed

+329
-148
lines changed

.gitattributes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33

44
# Custom for Visual Studio
55
*.cs diff=csharp
6+
*.sln merge=union
7+
*.csproj merge=union
8+
*.vbproj merge=union
9+
*.fsproj merge=union
10+
*.dbproj merge=union
611

712
# Standard to msysgit
813
*.doc diff=astextplain

.gitignore

Lines changed: 201 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,205 @@
1-
# Windows image file caches
2-
Thumbs.db
3-
ehthumbs.db
4-
5-
#Eagle Backup files
6-
*.s#?
7-
*.b#?
8-
*.l#?
9-
10-
# Folder config file
11-
Desktop.ini
12-
13-
# Recycle Bin used on file shares
14-
$RECYCLE.BIN/
15-
16-
# Windows Installer files
17-
*.cab
18-
*.msi
19-
*.msm
20-
*.msp
21-
22-
# =========================
23-
# Operating System Files
24-
# =========================
25-
26-
# OSX
27-
# =========================
28-
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
58+
*.b#?
59+
*.s#?
60+
*.l#?
61+
62+
63+
#################
64+
## Visual Studio
65+
#################
66+
67+
## Ignore Visual Studio temporary files, build results, and
68+
## files generated by popular Visual Studio add-ons.
69+
70+
# User-specific files
71+
*.suo
72+
*.user
73+
*.sln.docstates
74+
75+
# Build results
76+
[Dd]ebug/
77+
[Rr]elease/
78+
*_i.c
79+
*_p.c
80+
*.ilk
81+
*.meta
82+
*.obj
83+
*.pch
84+
*.pdb
85+
*.pgc
86+
*.pgd
87+
*.rsp
88+
*.sbr
89+
*.tlb
90+
*.tli
91+
*.tlh
92+
*.tmp
93+
*.vspscc
94+
.builds
95+
*.dotCover
96+
97+
## TODO: If you have NuGet Package Restore enabled, uncomment this
98+
#packages/
99+
100+
# Visual C++ cache files
101+
ipch/
102+
*.aps
103+
*.ncb
104+
*.opensdf
105+
*.sdf
106+
107+
# Visual Studio profiler
108+
*.psess
109+
*.vsp
110+
111+
# ReSharper is a .NET coding add-in
112+
_ReSharper*
113+
114+
# Installshield output folder
115+
[Ee]xpress
116+
117+
# DocProject is a documentation generator add-in
118+
DocProject/buildhelp/
119+
DocProject/Help/*.HxT
120+
DocProject/Help/*.HxC
121+
DocProject/Help/*.hhc
122+
DocProject/Help/*.hhk
123+
DocProject/Help/*.hhp
124+
DocProject/Help/Html2
125+
DocProject/Help/html
126+
127+
# Click-Once directory
128+
publish
129+
130+
# Others
131+
[Bb]in
132+
[Oo]bj
133+
sql
134+
TestResults
135+
*.Cache
136+
ClientBin
137+
stylecop.*
138+
~$*
139+
*.dbmdl
140+
Generated_Code #added for RIA/Silverlight projects
141+
142+
# Backup & report files from converting an old project file to a newer
143+
# Visual Studio version. Backup files are not needed, because we have git ;-)
144+
_UpgradeReport_Files/
145+
Backup*/
146+
UpgradeLog*.XML
147+
148+
149+
############
150+
## Windows
151+
############
152+
153+
# Windows image file caches
154+
Thumbs.db
155+
156+
# Folder config file
157+
Desktop.ini
158+
159+
160+
#############
161+
## Mac OS
162+
#############
163+
29164
.DS_Store
30-
.AppleDouble
31-
.LSOverride
32165

33-
# Icon must ends with two \r.
34-
Icon
35166

36-
# Thumbnails
37-
._*
167+
#############
168+
## Linux
169+
#############
170+
171+
# backup files (*.bak on Win)
172+
*~
173+
174+
175+
#############
176+
## Python
177+
#############
178+
179+
*.py[co]
180+
181+
# Packages
182+
*.egg
183+
*.egg-info
184+
dist
185+
build
186+
eggs
187+
parts
188+
bin
189+
var
190+
sdist
191+
develop-eggs
192+
.installed.cfg
193+
194+
# Installer logs
195+
pip-log.txt
196+
197+
# Unit test / coverage reports
198+
.coverage
199+
.tox
200+
201+
#Translations
202+
*.mo
38203

39-
# Files that might appear on external disk
40-
.Spotlight-V100
41-
.Trashes
204+
#Mr Developer
205+
.mr.developer.cfg

0 commit comments

Comments
 (0)