├── Hardware ├── SparkFun_MMA8452Q-Breakout.brd └── README.md ├── Libraries └── README.md ├── .gitattributes ├── LICENSE.md ├── Production └── README.md ├── .gitignore └── README.md /Hardware/SparkFun_MMA8452Q-Breakout.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MMA8452_Accelerometer/HEAD/Hardware/SparkFun_MMA8452Q-Breakout.brd -------------------------------------------------------------------------------- /Libraries/README.md: -------------------------------------------------------------------------------- 1 | SparkFun MMA8452Q Library 2 | ================================= 3 | 4 | The following libraries are available: 5 | 6 | * [SparkFun MMA8452Q Arduino Library](https://github.com/sparkfun/SparkFun_MMA8452Q_Arduino_Library) 7 | * [SparkFun MMA8452Q Particle Library](https://github.com/sparkfun/SparkFun_MMA8452Q_Particle_Library) -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 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 23 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | SparkFun License Information 2 | ============================= 3 | 4 | This product is open source! 5 | The hardware is released under [Creative Commons ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/). 6 | 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! 7 | Please use, reuse, and modify these files as you see fit. Please maintain attribution to SparkFun Electronics and release anything derivative under the same license. 8 | 9 | 10 | Distributed as-is; no warranty is given. 11 | 12 | - Your friends at SparkFun. 13 | 14 | -------------------------------------------------------------------------------- /Production/README.md: -------------------------------------------------------------------------------- 1 | SparkFun Production Files 2 | ========================================= 3 | 4 | 5 | These are the production files SparkFun uses for printing PCBs. 6 | 7 | 8 | License Information 9 | ------------------- 10 | This product is open source! 11 | 12 | The hardware is released under [Creative Commons ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/). 13 | 14 | Please use, reuse, and modify these files as you see fit. Please maintain attribution to SparkFun Electronics and release anything derivative under the same license. 15 | 16 | Distributed as-is; no warranty is given. 17 | 18 | - Your friends at SparkFun. 19 | -------------------------------------------------------------------------------- /Hardware/README.md: -------------------------------------------------------------------------------- 1 | SparkFun Design Files 2 | ===================================== 3 | 4 | The .sch and .brd files hare are Eagle CAD schematic and PCB design files from SparkFun Electronics. 5 | A freeware version of Eagle can be found [here](http://www.cadsoftusa.com/download-eagle/freeware/). 6 | 7 | 8 | License 9 | --------- 10 | This product is open source! 11 | The hardware is released under [Creative Commons ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/). 12 | 13 | Please use, reuse, and modify these files as you see fit. Please maintain attribution to SparkFun Electronics and release anything derivative under the same license. 14 | 15 | Distributed as-is; no warranty is given. 16 | 17 | - Your friends at SparkFun. -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ################# 2 | ## Eclipse 3 | ################# 4 | 5 | *.pydevproject 6 | .project 7 | .metadata 8 | bin/ 9 | tmp/ 10 | *.tmp 11 | *.bak 12 | *.swp 13 | *~.nib 14 | local.properties 15 | .classpath 16 | .settings/ 17 | .loadpath 18 | 19 | # External tool builders 20 | .externalToolBuilders/ 21 | 22 | # Locally stored "Eclipse launch configurations" 23 | *.launch 24 | 25 | # CDT-specific 26 | .cproject 27 | 28 | # PDT-specific 29 | .buildpath 30 | 31 | 32 | ################# 33 | ## Visual Studio 34 | ################# 35 | 36 | ## Ignore Visual Studio temporary files, build results, and 37 | ## files generated by popular Visual Studio add-ons. 38 | 39 | # User-specific files 40 | *.suo 41 | *.user 42 | *.sln.docstates 43 | 44 | # Build results 45 | [Dd]ebug/ 46 | [Rr]elease/ 47 | *_i.c 48 | *_p.c 49 | *.ilk 50 | *.meta 51 | *.obj 52 | *.pch 53 | *.pdb 54 | *.pgc 55 | *.pgd 56 | *.rsp 57 | *.sbr 58 | *.tlb 59 | *.tli 60 | *.tlh 61 | *.tmp 62 | *.vspscc 63 | .builds 64 | *.dotCover 65 | 66 | ## TODO: If you have NuGet Package Restore enabled, uncomment this 67 | #packages/ 68 | 69 | # Visual C++ cache files 70 | ipch/ 71 | *.aps 72 | *.ncb 73 | *.opensdf 74 | *.sdf 75 | 76 | # Visual Studio profiler 77 | *.psess 78 | *.vsp 79 | 80 | # ReSharper is a .NET coding add-in 81 | _ReSharper* 82 | 83 | # Installshield output folder 84 | [Ee]xpress 85 | 86 | # DocProject is a documentation generator add-in 87 | DocProject/buildhelp/ 88 | DocProject/Help/*.HxT 89 | DocProject/Help/*.HxC 90 | DocProject/Help/*.hhc 91 | DocProject/Help/*.hhk 92 | DocProject/Help/*.hhp 93 | DocProject/Help/Html2 94 | DocProject/Help/html 95 | 96 | # Click-Once directory 97 | publish 98 | 99 | # Others 100 | [Bb]in 101 | [Oo]bj 102 | sql 103 | TestResults 104 | *.Cache 105 | ClientBin 106 | stylecop.* 107 | ~$* 108 | *.dbmdl 109 | Generated_Code #added for RIA/Silverlight projects 110 | 111 | # Backup & report files from converting an old project file to a newer 112 | # Visual Studio version. Backup files are not needed, because we have git ;-) 113 | _UpgradeReport_Files/ 114 | Backup*/ 115 | UpgradeLog*.XML 116 | 117 | 118 | 119 | ############ 120 | ## Windows 121 | ############ 122 | 123 | # Windows image file caches 124 | Thumbs.db 125 | 126 | # Folder config file 127 | Desktop.ini 128 | 129 | 130 | ############# 131 | ## Python 132 | ############# 133 | 134 | *.py[co] 135 | 136 | # Packages 137 | *.egg 138 | *.egg-info 139 | dist 140 | build 141 | eggs 142 | parts 143 | bin 144 | var 145 | sdist 146 | develop-eggs 147 | .installed.cfg 148 | 149 | # Installer logs 150 | pip-log.txt 151 | 152 | # Unit test / coverage reports 153 | .coverage 154 | .tox 155 | 156 | #Translations 157 | *.mo 158 | 159 | #Mr Developer 160 | .mr.developer.cfg 161 | 162 | # Mac crap 163 | .DS_Store 164 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | SparkFun Triple Axis Accelerometer Breakout - MMA8452Q 2 | ============================================= 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | 14 |
SparkFun Triple Axis Accelerometer Breakout - MMA8452Q [SEN-12756]SparkFun Triple Axis Accelerometer Breakout - MMA8452Q (with Headers) 12 | [BOB-13926]
15 | 16 | This breakout board makes it easy to use the tiny MMA8452Q accelerometer in your project. 17 | The MMA8452Q is a smart low-power, three-axis, capacitive micro-machined accelerometer with 12 bits of resolution. 18 | 19 | Repository Contents 20 | ------------------- 21 | * **/Firmware** - Example Arduino sketches for interfacing with the accelerometer 22 | * **/Hardware** - All Eagle design files (.brd, .sch) 23 | * **/Libraries** - Libraries for use with the accelerometer 24 | * **/Production** - Production panel files (.brd) 25 | 26 | Documentation 27 | -------------- 28 | * Library 29 | * **[Arduino Library](https://github.com/sparkfun/SparkFun_MMA8452Q_Arduino_Library)** - Arduino library for the accelerometer. 30 | * **[Particle Library](https://github.com/sparkfun/SparkFun_MMA8452Q_Particle_Library)** - Particle library for the accelerometer. 31 | * **[Hookup Guide](https://learn.sparkfun.com/tutorials/mma8452q-accelerometer-breakout-hookup-guide)** - Basic hookup guide for the accelerometer. 32 | * **[SparkFun Fritzing repo](https://github.com/sparkfun/Fritzing_Parts)** - Fritzing diagrams for SparkFun products. 33 | * **[SparkFun 3D Model repo](https://github.com/sparkfun/3D_Models)** - 3D models of SparkFun products. 34 | 35 | Product Versions 36 | ---------------- 37 | * [BOB-13926](https://www.sparkfun.com/products/13926) - Version 11 with headers 38 | * [SEN-12756](https://www.sparkfun.com/products/12756) - Version 11 39 | * *[SEN-10955 (Retired)](https://www.sparkfun.com/products/retired/10955)* - Version 11 40 | 41 | License Information 42 | ------------------- 43 | This product is _**open source**_! 44 | 45 | The **hardware** is released under [Creative Commons ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/). 46 | 47 | 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! 48 | 49 | Please use, reuse, and modify these files as you see fit. Please maintain attribution to SparkFun Electronics and release anything derivative under the same license. 50 | 51 | Distributed as-is; no warranty is given. 52 | 53 | - Your friends at SparkFun. 54 | --------------------------------------------------------------------------------