Skip to content

Commit e91e289

Browse files
author
Toni Klopfenstein
committed
Updating README, adding gitignore files
1 parent a74b17b commit e91e289

File tree

3 files changed

+242
-1
lines changed

3 files changed

+242
-1
lines changed

.gitattributes

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Custom for Visual Studio
5+
*.cs diff=csharp
6+
*.sln merge=union
7+
*.csproj merge=union
8+
*.vbproj merge=union
9+
*.fsproj merge=union
10+
*.dbproj merge=union
11+
12+
# Standard to msysgit
13+
*.doc diff=astextplain
14+
*.DOC diff=astextplain
15+
*.docx diff=astextplain
16+
*.DOCX diff=astextplain
17+
*.dot diff=astextplain
18+
*.DOT diff=astextplain
19+
*.pdf diff=astextplain
20+
*.PDF diff=astextplain
21+
*.rtf diff=astextplain
22+
*.RTF diff=astextplain

.gitignore

Lines changed: 192 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,192 @@
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+
61+
62+
#################
63+
## Visual Studio
64+
#################
65+
66+
## Ignore Visual Studio temporary files, build results, and
67+
## files generated by popular Visual Studio add-ons.
68+
69+
# User-specific files
70+
*.suo
71+
*.user
72+
*.sln.docstates
73+
74+
# Build results
75+
[Dd]ebug/
76+
[Rr]elease/
77+
*_i.c
78+
*_p.c
79+
*.ilk
80+
*.meta
81+
*.obj
82+
*.pch
83+
*.pdb
84+
*.pgc
85+
*.pgd
86+
*.rsp
87+
*.sbr
88+
*.tlb
89+
*.tli
90+
*.tlh
91+
*.tmp
92+
*.vspscc
93+
.builds
94+
*.dotCover
95+
96+
## TODO: If you have NuGet Package Restore enabled, uncomment this
97+
#packages/
98+
99+
# Visual C++ cache files
100+
ipch/
101+
*.aps
102+
*.ncb
103+
*.opensdf
104+
*.sdf
105+
106+
# Visual Studio profiler
107+
*.psess
108+
*.vsp
109+
110+
# ReSharper is a .NET coding add-in
111+
_ReSharper*
112+
113+
# Installshield output folder
114+
[Ee]xpress
115+
116+
# DocProject is a documentation generator add-in
117+
DocProject/buildhelp/
118+
DocProject/Help/*.HxT
119+
DocProject/Help/*.HxC
120+
DocProject/Help/*.hhc
121+
DocProject/Help/*.hhk
122+
DocProject/Help/*.hhp
123+
DocProject/Help/Html2
124+
DocProject/Help/html
125+
126+
# Click-Once directory
127+
publish
128+
129+
# Others
130+
[Bb]in
131+
[Oo]bj
132+
sql
133+
TestResults
134+
*.Cache
135+
ClientBin
136+
stylecop.*
137+
~$*
138+
*.dbmdl
139+
Generated_Code #added for RIA/Silverlight projects
140+
141+
# Backup & report files from converting an old project file to a newer
142+
# Visual Studio version. Backup files are not needed, because we have git ;-)
143+
_UpgradeReport_Files/
144+
Backup*/
145+
UpgradeLog*.XML
146+
147+
148+
############
149+
## Windows
150+
############
151+
152+
# Windows image file caches
153+
Thumbs.db
154+
155+
# Folder config file
156+
Desktop.ini
157+
158+
159+
#############
160+
## Python
161+
#############
162+
163+
*.py[co]
164+
165+
# Packages
166+
*.egg
167+
*.egg-info
168+
dist
169+
build
170+
eggs
171+
parts
172+
bin
173+
var
174+
sdist
175+
develop-eggs
176+
.installed.cfg
177+
178+
# Installer logs
179+
pip-log.txt
180+
181+
# Unit test / coverage reports
182+
.coverage
183+
.tox
184+
185+
#Translations
186+
*.mo
187+
188+
#Mr Developer
189+
.mr.developer.cfg
190+
191+
# Mac crap
192+
.DS_Store

README.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,29 @@
1-
Pro_Micro
1+
Pro Micro
22
=========
3+
4+
[![Pro Micro 5V](https://cdn.sparkfun.com//assets/parts/9/3/2/6/12640-01a.jpg)
5+
*Pro Micro 5V (DEV-12640)*](https://www.sparkfun.com/products/12640)
6+
7+
8+
The Pro Micro is a micro controller with an ATMega32U4 IC on board.
9+
The USB transceiver is inside the 32U4, adding USB connectivity on-board without external USB interfaces.
10+
This comes in both a 3.3V and 5V version.
11+
12+
13+
Repository Contents
14+
-------------------
15+
* **/Hardware** - All Eagle design files (.brd, .sch, .STL)
16+
* **/Production** - Test bed files and production panel files
17+
18+
19+
Product Versions
20+
----------------
21+
* [DEV-12587](https://www.sparkfun.com/products/12587)- 3.3V/8MHz version
22+
* [DEV-12640](https://www.sparkfun.com/products/12640)- 5V/16MHz version
23+
24+
License Information
25+
-------------------
26+
The hardware is released under [Creative Commons ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/).
27+
The code is beerware; if you see me (or any other SparkFun employee) at the local, and you've found our code helpful, please buy us a round!
28+
29+
Distributed as-is; no warranty is given.

0 commit comments

Comments
 (0)