├── .gitignore ├── LICENSE ├── README.md ├── firmware └── emt │ ├── Visual Micro │ ├── .emt.vsarduino.h │ ├── Compile.vmps.xml │ ├── Configuration.Debug.vmps.xml │ └── Upload.vmps.xml │ ├── bitmap.c │ ├── emt.ino │ ├── emt.sdf │ ├── emt.sln │ ├── emt.v12.suo │ ├── emt.vcxproj │ ├── emt.vcxproj.filters │ └── menu.h └── hardware ├── IMG_20150610_111351_951.jpg ├── IMG_20150610_111421_223.jpg ├── IMG_20150610_111428_892.jpg ├── IMG_20150610_111452_189.jpg ├── IMG_5694.JPG ├── IMG_5698.JPG ├── IMG_5699.JPG ├── IMG_5700.JPG ├── IMG_5701.JPG ├── IMG_5702.JPG ├── IMG_5704.JPG ├── IMG_5705.JPG ├── Thumbs.db └── purza handheld ├── eagle.epf ├── purza.b#1 ├── purza.b#2 ├── purza.b#3 ├── purza.b#4 ├── purza.b#5 ├── purza.b#6 ├── purza.b#7 ├── purza.b#8 ├── purza.b#9 ├── purza.brd ├── purza.s#1 ├── purza.s#2 ├── purza.s#3 ├── purza.s#4 ├── purza.s#5 └── purza.sch /.gitignore: -------------------------------------------------------------------------------- 1 | firmware/emt/Visual Micro/.emt.vsarduino.h 2 | firmware/emt/Visual Micro/Compile.vmps.xml 3 | firmware/emt/Visual Micro/Configuration.Debug.vmps.xml 4 | firmware/emt/Visual Micro/Upload.vmps.xml 5 | firmware/emt/Visual Micro/.emt.vsarduino.h 6 | firmware/emt/Visual Micro/Compile.vmps.xml 7 | firmware/emt/Visual Micro/Configuration.Debug.vmps.xml 8 | firmware/emt/Visual Micro/Upload.vmps.xml 9 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | {description} 294 | Copyright (C) {year} {fullname} 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | {signature of Ty Coon}, 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | 341 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Engineers-Multi-Tool 2 | yet another tool for electronics engineers to use on their workbench - planned to include Voltmeter, Ammeter, Component Tester, Serial Terminal, DAQ functionality, Waveform Generator. 3 | 4 | A basic Arduino nano based portable device, having portable power, a basic display and circuitry to measure voltage, current, pulses, test components (Resistors, Capacitors, Transistors and more) and also be able to serve as a Serial Terminal and MORE. 5 | 6 | ## Planned Features 7 | * Handheld formfactor - credit card/gameboy/mobile phone sized 8 | * Arduino based 9 | * Input Push Buttons - 6 to 10 buttons via 1 single ADC pin 10 | * Nokia Graphics LCD - Mono, Mobile LCD for Display 11 | * Voltage Input - 0 to 50V or possibly, -50 to 50V Voltmeter (2x) 12 | * Current Input - 0 to 500mA or even possibly 1A Ammeter (FUSED) 13 | * Serial Terminal - Show incoming Serial data on screen (adjustable/auto baudrate) 14 | * Sqaure Wave Generator - basic clock generator, upto 1MHz with adjustable Duty Cycle 15 | * Pulse Counter - Basic Pulse stats - Freq, Duty Cycle, etc 16 | * Component Tester - a variant of the SemiConductor Tester 17 | * Battery Powered - Chargeable via USB 18 | * Serial Connection with PC - A basic data acquisition app on PC Side - Windows/Linux 19 | 20 | ### Suggest any other ideas that could be done..! 21 | 22 | 23 | ## TODO 24 | * Upload Schematic 25 | * Battery Charger integration 26 | * Serial Terminal implementation 27 | * Write more TODO List items...! 28 | 29 | 30 | ## WORK LOG 31 | * Basic Circuit made on a protoboard 32 | * LCD and Buttons Tested 33 | * Simple Voltmeter 0.5 to 50V implemented 34 | * Simple Pulse Generator Implemented with adjustable Freq/Duty 35 | * Simple Menu interface implemented 36 | * Integrate the Voltmeter, Pulse generator and Menu in one code 37 | > DONE before 10th of June 2015 38 | -------------------------------------------------------------------------------- /firmware/emt/Visual Micro/.emt.vsarduino.h: -------------------------------------------------------------------------------- 1 | /* 2 | Editor: http://www.visualmicro.com 3 | visual micro and the arduino ide ignore this code during compilation. this code is automatically maintained by visualmicro, manual changes to this file will be overwritten 4 | the contents of the Visual Micro sketch sub folder can be deleted prior to publishing a project 5 | all non-arduino files created by visual micro and all visual studio project or solution files can be freely deleted and are not required to compile a sketch (do not delete your own code!). 6 | note: debugger breakpoints are stored in '.sln' or '.asln' files, knowledge of last uploaded breakpoints is stored in the upload.vmps.xml file. Both files are required to continue a previous debug session without needing to compile and upload again 7 | 8 | Hardware: Arduino Nano w/ ATmega328, Platform=avr, Package=arduino 9 | */ 10 | 11 | #ifndef _VSARDUINO_H_ 12 | #define _VSARDUINO_H_ 13 | #define __AVR_ATmega328p__ 14 | #define __AVR_ATmega328P__ 15 | #define F_CPU 16000000L 16 | #define ARDUINO 163 17 | #define ARDUINO_AVR_NANO 18 | #define ARDUINO_ARCH_AVR 19 | #define __cplusplus 20 | #define __inline__ 21 | #define __asm__(x) 22 | #define __extension__ 23 | //#define __ATTR_PURE__ 24 | //#define __ATTR_CONST__ 25 | #define __inline__ 26 | //#define __asm__ 27 | #define __volatile__ 28 | #define GCC_VERSION 40801 29 | #define volatile(va_arg) 30 | #define _CONST 31 | typedef void *__builtin_va_list; 32 | #define __builtin_va_start 33 | #define __builtin_va_end 34 | //#define __DOXYGEN__ 35 | #define __attribute__(x) 36 | #define NOINLINE __attribute__((noinline)) 37 | #define prog_void 38 | #define PGM_VOID_P int 39 | #ifndef __builtin_constant_p 40 | #define __builtin_constant_p __attribute__((__const__)) 41 | #endif 42 | #ifndef __builtin_strlen 43 | #define __builtin_strlen __attribute__((__const__)) 44 | #endif 45 | #define NEW_H 46 | /* 47 | #ifndef __ATTR_CONST__ 48 | #define __ATTR_CONST__ __attribute__((__const__)) 49 | #endif 50 | 51 | #ifndef __ATTR_MALLOC__ 52 | #define __ATTR_MALLOC__ __attribute__((__malloc__)) 53 | #endif 54 | 55 | #ifndef __ATTR_NORETURN__ 56 | #define __ATTR_NORETURN__ __attribute__((__noreturn__)) 57 | #endif 58 | 59 | #ifndef __ATTR_PURE__ 60 | #define __ATTR_PURE__ __attribute__((__pure__)) 61 | #endif 62 | */ 63 | typedef unsigned char byte; 64 | extern "C" void __cxa_pure_virtual() {;} 65 | 66 | 67 | 68 | #include 69 | #include 70 | #undef F 71 | #define F(string_literal) ((const PROGMEM char *)(string_literal)) 72 | #undef PSTR 73 | #define PSTR(string_literal) ((const PROGMEM char *)(string_literal)) 74 | #undef cli 75 | #define cli() 76 | #define pgm_read_byte(address_short) 77 | #define pgm_read_word(address_short) 78 | #define pgm_read_word2(address_short) 79 | #define digitalPinToPort(P) 80 | #define digitalPinToBitMask(P) 81 | #define digitalPinToTimer(P) 82 | #define analogInPinToBit(P) 83 | #define portOutputRegister(P) 84 | #define portInputRegister(P) 85 | #define portModeRegister(P) 86 | #include 87 | #include 88 | #include 89 | #endif 90 | -------------------------------------------------------------------------------- /firmware/emt/Visual Micro/Compile.vmps.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /firmware/emt/Visual Micro/Configuration.Debug.vmps.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firmware/emt/Visual Micro/Upload.vmps.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /firmware/emt/bitmap.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | const unsigned char PROGMEM voltmeter[] ={ 4 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 5 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 6 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 7 | 0x0,0x0,0x1,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 8 | 0x1c,0x1c,0x0,0xc0,0x1,0xc0,0x70,0x0,0x0,0x0,0x0, 9 | 0x1c,0x18,0x0,0xc0,0x1,0xc0,0xe0,0x0,0x0,0x0,0x0, 10 | 0xc,0x10,0x0,0xc4,0x1,0xe0,0xe0,0x1,0x80,0x0,0x0, 11 | 0xc,0x31,0xe0,0xcf,0x81,0x61,0xe0,0xe3,0xe3,0xc6,0xc0, 12 | 0x6,0x23,0x38,0xcf,0x1,0x31,0x63,0x33,0xe6,0x67,0xc0, 13 | 0x6,0x66,0x18,0xcc,0x1,0xb3,0x63,0x19,0x8c,0x62,0x40, 14 | 0x3,0x46,0xc,0xcc,0x1,0xba,0x63,0xf9,0x8f,0xe2,0x0, 15 | 0x3,0x46,0xc,0xcc,0x1,0x9e,0x63,0x1,0x8c,0x6,0x0, 16 | 0x3,0x86,0x18,0xcc,0x1,0x9c,0x63,0x1,0x8c,0x2,0x0, 17 | 0x1,0x83,0x18,0xce,0x1,0x8c,0x63,0x81,0x87,0x6,0x0, 18 | 0x1,0x81,0xf1,0xc7,0x83,0x88,0x70,0xf1,0xe3,0xe7,0x0, 19 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 20 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 21 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 22 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 23 | 0x0,0x0,0x0,0x10,0x3f,0xe0,0xf8,0x0,0x0,0x0,0x0, 24 | 0x0,0x0,0x0,0x18,0x3f,0xff,0xff,0x0,0x0,0x0,0x0, 25 | 0x0,0x0,0x0,0x8,0x30,0x3e,0x3,0xc0,0x0,0x0,0x0, 26 | 0x0,0x0,0x0,0xc,0x10,0x8,0x0,0xe0,0x0,0x0,0x0, 27 | 0x0,0x0,0x0,0xc,0x10,0x20,0x0,0x70,0x0,0x0,0x0, 28 | 0x0,0x0,0x0,0xfc,0x10,0x30,0x0,0x70,0x0,0x0,0x0, 29 | 0x0,0x0,0x3,0xe6,0x10,0x70,0x0,0x38,0x0,0x0,0x0, 30 | 0x0,0x0,0x7,0x2,0x18,0x50,0x0,0x3f,0x0,0x0,0x0, 31 | 0x0,0x0,0xe,0x3,0x8,0x90,0x0,0x7,0x80,0x0,0x0, 32 | 0x0,0x0,0x1c,0x1,0x9,0x98,0x0,0x1,0xc0,0x0,0x0, 33 | 0x0,0x0,0x1c,0x1,0x89,0x8,0x0,0x0,0xe0,0x0,0x0, 34 | 0x0,0x0,0x1c,0x0,0x8b,0x8,0x0,0x0,0x70,0x0,0x0, 35 | 0x0,0x0,0x1c,0x0,0x8e,0x8,0x0,0x0,0x70,0x0,0x0, 36 | 0x0,0x0,0xe,0x0,0x4d,0x8c,0x40,0x0,0x70,0x0,0x0, 37 | 0x0,0x0,0x7,0x0,0x45,0xc4,0xc0,0x0,0x60,0x0,0x0, 38 | 0x0,0x0,0x3,0xc0,0x63,0x44,0xc0,0x0,0xe0,0x0,0x0, 39 | 0x0,0x0,0x1,0xe0,0x22,0x65,0xc0,0x1,0xc0,0x0,0x0, 40 | 0x0,0x0,0x0,0xc0,0x36,0x37,0x80,0x1,0xc0,0x0,0x0, 41 | 0x0,0x0,0x1,0xc0,0x14,0x13,0x80,0x1,0xc0,0x0,0x0, 42 | 0x0,0x0,0x1,0xc0,0x1c,0x1a,0x80,0x0,0xc0,0x0,0x0, 43 | 0x0,0x0,0x0,0xc0,0x8,0xc,0x80,0x0,0xc0,0x0,0x0, 44 | 0x0,0x0,0x0,0xe0,0x0,0x38,0x80,0x1,0xc0,0x0,0x0, 45 | 0x0,0x0,0x0,0x78,0x0,0x1c,0x80,0x3,0x80,0x0,0x0, 46 | 0x0,0x0,0x0,0x1f,0xfe,0x7,0x90,0x7,0x0,0x0,0x0, 47 | 0x0,0x0,0x0,0x7,0xff,0x1,0x3f,0x7e,0x0,0x0,0x0, 48 | 0x0,0x0,0x0,0x0,0x7,0xc1,0xff,0xf8,0x0,0x0,0x0, 49 | 0x0,0x0,0x0,0x0,0x1,0xff,0xc0,0x0,0x0,0x0,0x0, 50 | 0x0,0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x0,0x0, 51 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0 52 | }; 53 | 54 | const unsigned char PROGMEM WaveOut[] ={ 55 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 56 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 57 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 58 | 0x3c,0x0,0x70,0x0,0x0,0x0,0xf,0x80,0x0,0x0,0x0, 59 | 0x3c,0x10,0x70,0x0,0x0,0x0,0x3f,0xe0,0x0,0x0,0x0, 60 | 0x1c,0x38,0x60,0x0,0x0,0x0,0x70,0x70,0x0,0x20,0x0, 61 | 0xc,0x38,0x60,0x0,0x0,0x0,0x60,0x38,0x0,0x60,0x0, 62 | 0xc,0x7c,0xcf,0x9e,0x73,0xc0,0xe0,0x1b,0x8c,0xfc,0x0, 63 | 0x6,0x6c,0xcf,0xdc,0x6e,0xe0,0xe0,0x1b,0x8c,0xf8,0x0, 64 | 0x6,0x4c,0x80,0xce,0x4c,0x60,0xe0,0x19,0x8c,0x60,0x0, 65 | 0x7,0xcf,0x87,0xc6,0xcf,0xe0,0xe0,0x19,0x8c,0x60,0x0, 66 | 0x3,0x87,0x8f,0xc7,0x8c,0x0,0xe0,0x39,0x8c,0x60,0x0, 67 | 0x3,0x87,0x18,0xc3,0x8c,0x0,0x70,0x31,0x8c,0x60,0x0, 68 | 0x3,0x87,0x1d,0xc3,0xf,0xe0,0x38,0x61,0xde,0x70,0x0, 69 | 0x1,0x2,0xf,0xe3,0x7,0xe0,0x1f,0xc0,0xfe,0x7c,0x0, 70 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 71 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 72 | 0x0,0x0,0x1f,0xff,0xff,0xff,0xff,0xff,0x80,0x0,0x0, 73 | 0x0,0x0,0x1f,0xff,0xff,0xff,0xff,0xff,0x80,0x0,0x0, 74 | 0x0,0x0,0x1f,0xff,0xff,0xff,0xff,0xff,0x80,0x0,0x0, 75 | 0x0,0x0,0x1f,0xff,0xff,0xff,0xff,0xff,0x80,0x0,0x0, 76 | 0x0,0x0,0x1e,0x0,0x0,0x1f,0xff,0xff,0x80,0x0,0x0, 77 | 0x0,0x0,0x1e,0x0,0x0,0x1f,0xff,0xff,0x80,0x0,0x0, 78 | 0x0,0x0,0x1e,0x7f,0xff,0x9f,0xff,0xff,0x80,0x0,0x0, 79 | 0x0,0x0,0x1e,0x7f,0xff,0x9f,0xff,0xff,0x80,0x0,0x0, 80 | 0x0,0x0,0x1e,0x7f,0xff,0x9f,0xff,0xff,0x80,0x0,0x0, 81 | 0x0,0x0,0x1e,0x7f,0xff,0x9f,0xff,0xff,0x80,0x0,0x0, 82 | 0x0,0x0,0x1e,0x7f,0xff,0x9f,0xff,0xff,0x80,0x0,0x0, 83 | 0x0,0x0,0x1e,0x7f,0xff,0x9f,0xff,0xff,0x80,0x0,0x0, 84 | 0x0,0x0,0x1e,0x7f,0xff,0x9f,0xff,0xff,0x80,0x0,0x0, 85 | 0x0,0x0,0x1e,0x7f,0xff,0x9f,0xff,0xff,0x80,0x0,0x0, 86 | 0x0,0x0,0x1f,0xff,0xff,0x9f,0xff,0xff,0x80,0x0,0x0, 87 | 0x0,0x0,0x1f,0xff,0xff,0x9f,0xff,0xe7,0x80,0x0,0x0, 88 | 0x0,0x0,0x1f,0xff,0xff,0x9f,0xff,0xe7,0x80,0x0,0x0, 89 | 0x0,0x0,0x1f,0xff,0xff,0x9f,0xff,0xe7,0x80,0x0,0x0, 90 | 0x0,0x0,0x1f,0xff,0xff,0x9f,0xff,0xe7,0x80,0x0,0x0, 91 | 0x0,0x0,0x1f,0xff,0xff,0x9f,0xff,0xe7,0x80,0x0,0x0, 92 | 0x0,0x0,0x1f,0xff,0xff,0x9f,0xff,0xe7,0x80,0x0,0x0, 93 | 0x0,0x0,0x1f,0xff,0xff,0x9f,0xff,0xe7,0x80,0x0,0x0, 94 | 0x0,0x0,0x1f,0xff,0xff,0x9f,0xff,0xe7,0x80,0x0,0x0, 95 | 0x0,0x0,0x1f,0xff,0xff,0x80,0x0,0x7,0x80,0x0,0x0, 96 | 0x0,0x0,0x1f,0xff,0xff,0x80,0x0,0x7,0x80,0x0,0x0, 97 | 0x0,0x0,0x1f,0xff,0xff,0xff,0xff,0xff,0x80,0x0,0x0, 98 | 0x0,0x0,0x1f,0xff,0xff,0xff,0xff,0xff,0x80,0x0,0x0, 99 | 0x0,0x0,0x1f,0xff,0xff,0xff,0xff,0xff,0x80,0x0,0x0, 100 | 0x0,0x0,0x1f,0xff,0xff,0xff,0xff,0xff,0x80,0x0,0x0, 101 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 102 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0 103 | }; 104 | 105 | const unsigned char PROGMEM SemiTester[] ={ 106 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 107 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 108 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 109 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 110 | 0x7,0x80,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0, 111 | 0x1f,0xc0,0x0,0x0,0x70,0xff,0xc0,0x0,0x0,0x0,0x0, 112 | 0x18,0x80,0x0,0x0,0x20,0x4c,0x40,0x0,0x40,0x0,0x0, 113 | 0x18,0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x40,0x0,0x0, 114 | 0x1c,0xf,0x9f,0xfc,0x60,0xc,0x1e,0x3c,0xf1,0xe7,0xc0, 115 | 0xf,0x18,0xc8,0xc6,0x20,0xc,0x23,0x64,0xc2,0x33,0x40, 116 | 0x3,0x9f,0xc8,0xc6,0x20,0xc,0x3f,0x70,0xc7,0xf3,0x0, 117 | 0x0,0xd8,0x8,0xc6,0x20,0xc,0x60,0x3c,0xc6,0x3,0x0, 118 | 0x10,0xd8,0x8,0xc6,0x20,0xc,0x20,0x6,0xc6,0x3,0x0, 119 | 0x10,0x8c,0x8,0xc6,0x60,0xc,0x38,0x66,0xc3,0x3,0x0, 120 | 0x1f,0x7,0x9c,0xe6,0x70,0x1e,0x1e,0x3c,0x71,0xe7,0x0, 121 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 122 | 0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 123 | 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 124 | 0x0,0x0,0x0,0x3,0x0,0xe,0x0,0x0,0x0,0x0,0x0, 125 | 0x0,0x0,0x0,0x3,0x0,0x31,0xc0,0x0,0x0,0x0,0x0, 126 | 0x0,0x0,0x0,0x3,0x0,0x40,0x70,0x0,0x0,0x0,0x0, 127 | 0x0,0x0,0x0,0x3,0x1,0xf8,0xfc,0x0,0x0,0x0,0x0, 128 | 0x0,0x0,0x0,0x3,0x6,0xcb,0xfe,0x0,0x0,0x0,0x0, 129 | 0x0,0x0,0x0,0x3,0x8,0x47,0xff,0x0,0x0,0x0,0x0, 130 | 0x0,0x1,0x9e,0x3,0x8,0x1f,0xff,0x80,0x0,0x0,0x0, 131 | 0x0,0x1,0x9f,0xfe,0x8,0x3f,0xff,0xe0,0x0,0x0,0x0, 132 | 0x0,0x1,0x9e,0x0,0xc,0x7f,0xff,0xf0,0x0,0x0,0x0, 133 | 0x0,0x1,0x9e,0x0,0x6,0xff,0xff,0xf0,0x0,0x0,0x0, 134 | 0x0,0x1,0x80,0x0,0x3,0xff,0xff,0xf0,0x0,0x0,0x0, 135 | 0x0,0x1,0x9e,0x0,0x1,0xff,0xff,0xf0,0x0,0x0,0x0, 136 | 0x0,0x1,0x9e,0x30,0x0,0xff,0xff,0xf0,0x0,0x0,0x0, 137 | 0x0,0x1,0x9f,0xff,0x0,0x3f,0xff,0xdc,0x0,0x0,0x0, 138 | 0x0,0x1,0x9f,0xfb,0x0,0x1f,0xfe,0x6,0x0,0x0,0x0, 139 | 0x0,0x1,0x9e,0x13,0x0,0x7,0xff,0x83,0x80,0x0,0x0, 140 | 0x0,0x1,0x9e,0x3,0x0,0x3,0xfc,0x61,0xc0,0x0,0x0, 141 | 0x0,0x1,0x80,0x3,0x0,0x1,0xfc,0x30,0x60,0x0,0x0, 142 | 0x0,0x1,0x9e,0x3,0x0,0x0,0xce,0x18,0x30,0x0,0x0, 143 | 0x0,0x1,0x9f,0xff,0x0,0x0,0x7,0xe,0x8,0x0,0x0, 144 | 0x0,0x1,0x9e,0x7,0x0,0x0,0x1,0xc7,0x6,0x0,0x0, 145 | 0x0,0x3f,0x9e,0x3,0x0,0x0,0x0,0xe1,0x83,0x0,0x0, 146 | 0x0,0x3f,0x80,0x3,0x0,0x0,0x0,0x70,0x40,0x40,0x0, 147 | 0x0,0x3f,0x80,0x3,0x0,0x0,0x0,0x38,0x30,0x0,0x0, 148 | 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x10,0x0,0x0, 149 | 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x6,0x4,0x0,0x0, 150 | 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0, 151 | 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x80,0x0,0x0, 152 | 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0xc0,0x0,0x0, 153 | 0x0,0x0,0x1,0xef,0x0,0x0,0x0,0x0,0x0,0x0,0x0 154 | }; 155 | 156 | 157 | 158 | 159 | 160 | 161 | const unsigned char PROGMEM SerialOut[] ={ 162 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 163 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 164 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 165 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 166 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 167 | 0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, 168 | 0x0,0x0,0x3f,0xe0,0x0,0x1b,0xff,0x80,0x0,0x0,0x0, 169 | 0x0,0x0,0x1c,0xf0,0x0,0x1a,0x39,0x80,0x0,0x0,0x0, 170 | 0x0,0x0,0x1c,0x70,0x0,0x12,0x39,0x0,0x0,0x0,0x0, 171 | 0x0,0x0,0x1c,0xe3,0xcc,0x30,0x38,0x79,0xc0,0x0,0x0, 172 | 0x0,0x0,0x1c,0xe1,0xd8,0x30,0x38,0x39,0x0,0x0,0x0, 173 | 0x0,0x0,0x1f,0x80,0xf0,0x20,0x38,0x1f,0x0,0x0,0x0, 174 | 0x0,0x0,0x1d,0xc0,0xe0,0x60,0x38,0xe,0x0,0x0,0x0, 175 | 0x0,0x0,0x1d,0xe0,0xf0,0x60,0x38,0xe,0x0,0x0,0x0, 176 | 0x0,0x0,0x1c,0xe0,0xf8,0x40,0x38,0x1f,0x0,0x0,0x0, 177 | 0x0,0x0,0x1c,0x71,0x3c,0xc0,0x38,0x33,0x80,0x0,0x0, 178 | 0x0,0x0,0x3c,0x3f,0x1c,0xc0,0x7c,0x73,0xc0,0x0,0x0, 179 | 0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x0, 180 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 181 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 182 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 183 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 184 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 185 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 186 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 187 | 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xf0,0x0,0x0,0x0, 188 | 0x0,0x0,0x1,0x80,0x0,0x0,0x0,0x10,0x0,0x0,0x0, 189 | 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0, 190 | 0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0, 191 | 0x0,0x0,0x2,0xe,0x38,0xe3,0x8e,0x8,0x0,0x0,0x0, 192 | 0x0,0x0,0x3,0xf,0x3d,0xf7,0xdf,0x10,0x0,0x0,0x0, 193 | 0x0,0x0,0x1,0x1f,0x7d,0xf7,0xdf,0x10,0x0,0x0,0x0, 194 | 0x0,0x0,0x1,0xf,0x3c,0xf7,0x9e,0x10,0x0,0x0,0x0, 195 | 0x0,0x0,0x1,0x6,0x18,0x61,0xc,0x10,0x0,0x0,0x0, 196 | 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0, 197 | 0x0,0x0,0x1,0x80,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 198 | 0x0,0x0,0x0,0x81,0xc7,0x18,0x60,0x20,0x0,0x0,0x0, 199 | 0x0,0x0,0x0,0x81,0xef,0xbc,0xf0,0x20,0x0,0x0,0x0, 200 | 0x0,0x0,0x0,0x83,0xef,0xbe,0xf8,0x20,0x0,0x0,0x0, 201 | 0x0,0x0,0x0,0x83,0xef,0xbc,0xf0,0x20,0x0,0x0,0x0, 202 | 0x0,0x0,0x0,0xc1,0xc7,0x1c,0x60,0x60,0x0,0x0,0x0, 203 | 0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x60,0x0,0x0,0x0, 204 | 0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x40,0x0,0x0,0x0, 205 | 0x0,0x0,0x0,0x60,0x0,0x0,0x0,0xc0,0x0,0x0,0x0, 206 | 0x0,0x0,0x0,0x3f,0xff,0xff,0xff,0x80,0x0,0x0,0x0, 207 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 208 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 209 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0 210 | }; 211 | -------------------------------------------------------------------------------- /firmware/emt/emt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EjaadTech/Engineers-Multi-Tool/ec91b0c6df83bb3a0e51a03b6c00bd92e2d6e012/firmware/emt/emt.ino -------------------------------------------------------------------------------- /firmware/emt/emt.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EjaadTech/Engineers-Multi-Tool/ec91b0c6df83bb3a0e51a03b6c00bd92e2d6e012/firmware/emt/emt.sdf -------------------------------------------------------------------------------- /firmware/emt/emt.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2013 4 | VisualStudioVersion = 12.0.21005.1 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "emt", "emt.vcxproj", "{AF29DC20-4E74-49CA-950B-50E94A809E20}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Win32 = Debug|Win32 11 | Release|Win32 = Release|Win32 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {AF29DC20-4E74-49CA-950B-50E94A809E20}.Debug|Win32.ActiveCfg = Debug|Win32 15 | {AF29DC20-4E74-49CA-950B-50E94A809E20}.Debug|Win32.Build.0 = Debug|Win32 16 | {AF29DC20-4E74-49CA-950B-50E94A809E20}.Release|Win32.ActiveCfg = Release|Win32 17 | {AF29DC20-4E74-49CA-950B-50E94A809E20}.Release|Win32.Build.0 = Release|Win32 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /firmware/emt/emt.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EjaadTech/Engineers-Multi-Tool/ec91b0c6df83bb3a0e51a03b6c00bd92e2d6e012/firmware/emt/emt.v12.suo -------------------------------------------------------------------------------- /firmware/emt/emt.vcxproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Release 10 | Win32 11 | 12 | 13 | 14 | {AF29DC20-4E74-49CA-950B-50E94A809E20} 15 | emt 16 | 17 | 18 | 19 | Application 20 | true 21 | v120 22 | MultiByte 23 | 24 | 25 | Application 26 | false 27 | v120 28 | true 29 | MultiByte 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | Level3 45 | Disabled 46 | true 47 | C:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino;C:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\eightanaloginputs;C:\Users\Jailbeaker\Documents\GitHub\Engineers-Multi-Tool\firmware\emt;C:\Program Files (x86)\Arduino\libraries\Adafruit5110;C:\Program Files (x86)\Arduino\libraries\Adafruit5110\utility;C:\Program Files (x86)\Arduino\libraries\ADaftuitLCD;C:\Program Files (x86)\Arduino\libraries\ADaftuitLCD\utility;C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\EEPROM;C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\EEPROM\utility;C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\SPI;C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\SPI\utility;C:\Program Files (x86)\Arduino\libraries;C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries;C:\Program Files (x86)\Visual Micro\Visual Micro for Arduino\Micro Platforms\default\debuggers;C:\Users\Jailbeaker\Documents\Arduino\libraries;C:\Program Files (x86)\Arduino\hardware\tools\avr/avr/include/;C:\Program Files (x86)\Arduino\hardware\tools\avr//avr/include/avr/;C:\Program Files (x86)\Arduino\hardware\tools\avr/lib\gcc\avr\4.8.1\include;%(AdditionalIncludeDirectories) 48 | C:\Users\Jailbeaker\Documents\GitHub\Engineers-Multi-Tool\firmware\emt\Visual Micro\.emt.vsarduino.h;%(ForcedIncludeFiles) 49 | true 50 | __AVR_ATmega328p__;__AVR_ATmega328P__;F_CPU=16000000L;ARDUINO=163;ARDUINO_AVR_NANO;ARDUINO_ARCH_AVR;__cplusplus;%(PreprocessorDefinitions) 51 | 52 | 53 | true 54 | 55 | 56 | 57 | 58 | Level3 59 | MaxSpeed 60 | true 61 | true 62 | true 63 | 64 | 65 | true 66 | true 67 | true 68 | 69 | 70 | 71 | 72 | CppCode 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | -------------------------------------------------------------------------------- /firmware/emt/emt.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Header Files 23 | 24 | 25 | Header Files 26 | 27 | 28 | 29 | 30 | Source Files 31 | 32 | 33 | -------------------------------------------------------------------------------- /firmware/emt/menu.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | const unsigned char PROGMEM voltmeter[] = { 4 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 5 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 6 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 7 | 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 8 | 0x1c, 0x1c, 0x0, 0xc0, 0x1, 0xc0, 0x70, 0x0, 0x0, 0x0, 0x0, 9 | 0x1c, 0x18, 0x0, 0xc0, 0x1, 0xc0, 0xe0, 0x0, 0x0, 0x0, 0x0, 10 | 0xc, 0x10, 0x0, 0xc4, 0x1, 0xe0, 0xe0, 0x1, 0x80, 0x0, 0x0, 11 | 0xc, 0x31, 0xe0, 0xcf, 0x81, 0x61, 0xe0, 0xe3, 0xe3, 0xc6, 0xc0, 12 | 0x6, 0x23, 0x38, 0xcf, 0x1, 0x31, 0x63, 0x33, 0xe6, 0x67, 0xc0, 13 | 0x6, 0x66, 0x18, 0xcc, 0x1, 0xb3, 0x63, 0x19, 0x8c, 0x62, 0x40, 14 | 0x3, 0x46, 0xc, 0xcc, 0x1, 0xba, 0x63, 0xf9, 0x8f, 0xe2, 0x0, 15 | 0x3, 0x46, 0xc, 0xcc, 0x1, 0x9e, 0x63, 0x1, 0x8c, 0x6, 0x0, 16 | 0x3, 0x86, 0x18, 0xcc, 0x1, 0x9c, 0x63, 0x1, 0x8c, 0x2, 0x0, 17 | 0x1, 0x83, 0x18, 0xce, 0x1, 0x8c, 0x63, 0x81, 0x87, 0x6, 0x0, 18 | 0x1, 0x81, 0xf1, 0xc7, 0x83, 0x88, 0x70, 0xf1, 0xe3, 0xe7, 0x0, 19 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 20 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 21 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 22 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 23 | 0x0, 0x0, 0x0, 0x10, 0x3f, 0xe0, 0xf8, 0x0, 0x0, 0x0, 0x0, 24 | 0x0, 0x0, 0x0, 0x18, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 25 | 0x0, 0x0, 0x0, 0x8, 0x30, 0x3e, 0x3, 0xc0, 0x0, 0x0, 0x0, 26 | 0x0, 0x0, 0x0, 0xc, 0x10, 0x8, 0x0, 0xe0, 0x0, 0x0, 0x0, 27 | 0x0, 0x0, 0x0, 0xc, 0x10, 0x20, 0x0, 0x70, 0x0, 0x0, 0x0, 28 | 0x0, 0x0, 0x0, 0xfc, 0x10, 0x30, 0x0, 0x70, 0x0, 0x0, 0x0, 29 | 0x0, 0x0, 0x3, 0xe6, 0x10, 0x70, 0x0, 0x38, 0x0, 0x0, 0x0, 30 | 0x0, 0x0, 0x7, 0x2, 0x18, 0x50, 0x0, 0x3f, 0x0, 0x0, 0x0, 31 | 0x0, 0x0, 0xe, 0x3, 0x8, 0x90, 0x0, 0x7, 0x80, 0x0, 0x0, 32 | 0x0, 0x0, 0x1c, 0x1, 0x9, 0x98, 0x0, 0x1, 0xc0, 0x0, 0x0, 33 | 0x0, 0x0, 0x1c, 0x1, 0x89, 0x8, 0x0, 0x0, 0xe0, 0x0, 0x0, 34 | 0x0, 0x0, 0x1c, 0x0, 0x8b, 0x8, 0x0, 0x0, 0x70, 0x0, 0x0, 35 | 0x0, 0x0, 0x1c, 0x0, 0x8e, 0x8, 0x0, 0x0, 0x70, 0x0, 0x0, 36 | 0x0, 0x0, 0xe, 0x0, 0x4d, 0x8c, 0x40, 0x0, 0x70, 0x0, 0x0, 37 | 0x0, 0x0, 0x7, 0x0, 0x45, 0xc4, 0xc0, 0x0, 0x60, 0x0, 0x0, 38 | 0x0, 0x0, 0x3, 0xc0, 0x63, 0x44, 0xc0, 0x0, 0xe0, 0x0, 0x0, 39 | 0x0, 0x0, 0x1, 0xe0, 0x22, 0x65, 0xc0, 0x1, 0xc0, 0x0, 0x0, 40 | 0x0, 0x0, 0x0, 0xc0, 0x36, 0x37, 0x80, 0x1, 0xc0, 0x0, 0x0, 41 | 0x0, 0x0, 0x1, 0xc0, 0x14, 0x13, 0x80, 0x1, 0xc0, 0x0, 0x0, 42 | 0x0, 0x0, 0x1, 0xc0, 0x1c, 0x1a, 0x80, 0x0, 0xc0, 0x0, 0x0, 43 | 0x0, 0x0, 0x0, 0xc0, 0x8, 0xc, 0x80, 0x0, 0xc0, 0x0, 0x0, 44 | 0x0, 0x0, 0x0, 0xe0, 0x0, 0x38, 0x80, 0x1, 0xc0, 0x0, 0x0, 45 | 0x0, 0x0, 0x0, 0x78, 0x0, 0x1c, 0x80, 0x3, 0x80, 0x0, 0x0, 46 | 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x7, 0x90, 0x7, 0x0, 0x0, 0x0, 47 | 0x0, 0x0, 0x0, 0x7, 0xff, 0x1, 0x3f, 0x7e, 0x0, 0x0, 0x0, 48 | 0x0, 0x0, 0x0, 0x0, 0x7, 0xc1, 0xff, 0xf8, 0x0, 0x0, 0x0, 49 | 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 50 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 51 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 52 | }; 53 | 54 | const unsigned char PROGMEM WaveOut[] = { 55 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 56 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 57 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 58 | 0x3c, 0x0, 0x70, 0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x0, 59 | 0x3c, 0x10, 0x70, 0x0, 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x0, 0x0, 60 | 0x1c, 0x38, 0x60, 0x0, 0x0, 0x0, 0x70, 0x70, 0x0, 0x20, 0x0, 61 | 0xc, 0x38, 0x60, 0x0, 0x0, 0x0, 0x60, 0x38, 0x0, 0x60, 0x0, 62 | 0xc, 0x7c, 0xcf, 0x9e, 0x73, 0xc0, 0xe0, 0x1b, 0x8c, 0xfc, 0x0, 63 | 0x6, 0x6c, 0xcf, 0xdc, 0x6e, 0xe0, 0xe0, 0x1b, 0x8c, 0xf8, 0x0, 64 | 0x6, 0x4c, 0x80, 0xce, 0x4c, 0x60, 0xe0, 0x19, 0x8c, 0x60, 0x0, 65 | 0x7, 0xcf, 0x87, 0xc6, 0xcf, 0xe0, 0xe0, 0x19, 0x8c, 0x60, 0x0, 66 | 0x3, 0x87, 0x8f, 0xc7, 0x8c, 0x0, 0xe0, 0x39, 0x8c, 0x60, 0x0, 67 | 0x3, 0x87, 0x18, 0xc3, 0x8c, 0x0, 0x70, 0x31, 0x8c, 0x60, 0x0, 68 | 0x3, 0x87, 0x1d, 0xc3, 0xf, 0xe0, 0x38, 0x61, 0xde, 0x70, 0x0, 69 | 0x1, 0x2, 0xf, 0xe3, 0x7, 0xe0, 0x1f, 0xc0, 0xfe, 0x7c, 0x0, 70 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 71 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 72 | 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 73 | 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 74 | 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 75 | 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 76 | 0x0, 0x0, 0x1e, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x0, 77 | 0x0, 0x0, 0x1e, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x0, 78 | 0x0, 0x0, 0x1e, 0x7f, 0xff, 0x9f, 0xff, 0xff, 0x80, 0x0, 0x0, 79 | 0x0, 0x0, 0x1e, 0x7f, 0xff, 0x9f, 0xff, 0xff, 0x80, 0x0, 0x0, 80 | 0x0, 0x0, 0x1e, 0x7f, 0xff, 0x9f, 0xff, 0xff, 0x80, 0x0, 0x0, 81 | 0x0, 0x0, 0x1e, 0x7f, 0xff, 0x9f, 0xff, 0xff, 0x80, 0x0, 0x0, 82 | 0x0, 0x0, 0x1e, 0x7f, 0xff, 0x9f, 0xff, 0xff, 0x80, 0x0, 0x0, 83 | 0x0, 0x0, 0x1e, 0x7f, 0xff, 0x9f, 0xff, 0xff, 0x80, 0x0, 0x0, 84 | 0x0, 0x0, 0x1e, 0x7f, 0xff, 0x9f, 0xff, 0xff, 0x80, 0x0, 0x0, 85 | 0x0, 0x0, 0x1e, 0x7f, 0xff, 0x9f, 0xff, 0xff, 0x80, 0x0, 0x0, 86 | 0x0, 0x0, 0x1f, 0xff, 0xff, 0x9f, 0xff, 0xff, 0x80, 0x0, 0x0, 87 | 0x0, 0x0, 0x1f, 0xff, 0xff, 0x9f, 0xff, 0xe7, 0x80, 0x0, 0x0, 88 | 0x0, 0x0, 0x1f, 0xff, 0xff, 0x9f, 0xff, 0xe7, 0x80, 0x0, 0x0, 89 | 0x0, 0x0, 0x1f, 0xff, 0xff, 0x9f, 0xff, 0xe7, 0x80, 0x0, 0x0, 90 | 0x0, 0x0, 0x1f, 0xff, 0xff, 0x9f, 0xff, 0xe7, 0x80, 0x0, 0x0, 91 | 0x0, 0x0, 0x1f, 0xff, 0xff, 0x9f, 0xff, 0xe7, 0x80, 0x0, 0x0, 92 | 0x0, 0x0, 0x1f, 0xff, 0xff, 0x9f, 0xff, 0xe7, 0x80, 0x0, 0x0, 93 | 0x0, 0x0, 0x1f, 0xff, 0xff, 0x9f, 0xff, 0xe7, 0x80, 0x0, 0x0, 94 | 0x0, 0x0, 0x1f, 0xff, 0xff, 0x9f, 0xff, 0xe7, 0x80, 0x0, 0x0, 95 | 0x0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x7, 0x80, 0x0, 0x0, 96 | 0x0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x7, 0x80, 0x0, 0x0, 97 | 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 98 | 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 99 | 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 100 | 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 101 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 102 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 103 | }; 104 | 105 | const unsigned char PROGMEM SemiTester[] = { 106 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 107 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 108 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 109 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 110 | 0x7, 0x80, 0x0, 0x0, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 111 | 0x1f, 0xc0, 0x0, 0x0, 0x70, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 112 | 0x18, 0x80, 0x0, 0x0, 0x20, 0x4c, 0x40, 0x0, 0x40, 0x0, 0x0, 113 | 0x18, 0x0, 0x0, 0x0, 0x0, 0xc, 0x0, 0x0, 0x40, 0x0, 0x0, 114 | 0x1c, 0xf, 0x9f, 0xfc, 0x60, 0xc, 0x1e, 0x3c, 0xf1, 0xe7, 0xc0, 115 | 0xf, 0x18, 0xc8, 0xc6, 0x20, 0xc, 0x23, 0x64, 0xc2, 0x33, 0x40, 116 | 0x3, 0x9f, 0xc8, 0xc6, 0x20, 0xc, 0x3f, 0x70, 0xc7, 0xf3, 0x0, 117 | 0x0, 0xd8, 0x8, 0xc6, 0x20, 0xc, 0x60, 0x3c, 0xc6, 0x3, 0x0, 118 | 0x10, 0xd8, 0x8, 0xc6, 0x20, 0xc, 0x20, 0x6, 0xc6, 0x3, 0x0, 119 | 0x10, 0x8c, 0x8, 0xc6, 0x60, 0xc, 0x38, 0x66, 0xc3, 0x3, 0x0, 120 | 0x1f, 0x7, 0x9c, 0xe6, 0x70, 0x1e, 0x1e, 0x3c, 0x71, 0xe7, 0x0, 121 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 122 | 0x0, 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 123 | 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 124 | 0x0, 0x0, 0x0, 0x3, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 125 | 0x0, 0x0, 0x0, 0x3, 0x0, 0x31, 0xc0, 0x0, 0x0, 0x0, 0x0, 126 | 0x0, 0x0, 0x0, 0x3, 0x0, 0x40, 0x70, 0x0, 0x0, 0x0, 0x0, 127 | 0x0, 0x0, 0x0, 0x3, 0x1, 0xf8, 0xfc, 0x0, 0x0, 0x0, 0x0, 128 | 0x0, 0x0, 0x0, 0x3, 0x6, 0xcb, 0xfe, 0x0, 0x0, 0x0, 0x0, 129 | 0x0, 0x0, 0x0, 0x3, 0x8, 0x47, 0xff, 0x0, 0x0, 0x0, 0x0, 130 | 0x0, 0x1, 0x9e, 0x3, 0x8, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 131 | 0x0, 0x1, 0x9f, 0xfe, 0x8, 0x3f, 0xff, 0xe0, 0x0, 0x0, 0x0, 132 | 0x0, 0x1, 0x9e, 0x0, 0xc, 0x7f, 0xff, 0xf0, 0x0, 0x0, 0x0, 133 | 0x0, 0x1, 0x9e, 0x0, 0x6, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 134 | 0x0, 0x1, 0x80, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 135 | 0x0, 0x1, 0x9e, 0x0, 0x1, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 136 | 0x0, 0x1, 0x9e, 0x30, 0x0, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 137 | 0x0, 0x1, 0x9f, 0xff, 0x0, 0x3f, 0xff, 0xdc, 0x0, 0x0, 0x0, 138 | 0x0, 0x1, 0x9f, 0xfb, 0x0, 0x1f, 0xfe, 0x6, 0x0, 0x0, 0x0, 139 | 0x0, 0x1, 0x9e, 0x13, 0x0, 0x7, 0xff, 0x83, 0x80, 0x0, 0x0, 140 | 0x0, 0x1, 0x9e, 0x3, 0x0, 0x3, 0xfc, 0x61, 0xc0, 0x0, 0x0, 141 | 0x0, 0x1, 0x80, 0x3, 0x0, 0x1, 0xfc, 0x30, 0x60, 0x0, 0x0, 142 | 0x0, 0x1, 0x9e, 0x3, 0x0, 0x0, 0xce, 0x18, 0x30, 0x0, 0x0, 143 | 0x0, 0x1, 0x9f, 0xff, 0x0, 0x0, 0x7, 0xe, 0x8, 0x0, 0x0, 144 | 0x0, 0x1, 0x9e, 0x7, 0x0, 0x0, 0x1, 0xc7, 0x6, 0x0, 0x0, 145 | 0x0, 0x3f, 0x9e, 0x3, 0x0, 0x0, 0x0, 0xe1, 0x83, 0x0, 0x0, 146 | 0x0, 0x3f, 0x80, 0x3, 0x0, 0x0, 0x0, 0x70, 0x40, 0x40, 0x0, 147 | 0x0, 0x3f, 0x80, 0x3, 0x0, 0x0, 0x0, 0x38, 0x30, 0x0, 0x0, 148 | 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0xc, 0x10, 0x0, 0x0, 149 | 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x6, 0x4, 0x0, 0x0, 150 | 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 151 | 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x80, 0x0, 0x0, 152 | 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0xc0, 0x0, 0x0, 153 | 0x0, 0x0, 0x1, 0xef, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 154 | }; 155 | 156 | 157 | 158 | 159 | 160 | 161 | const unsigned char PROGMEM SerialOut[] = { 162 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 163 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 164 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 165 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 166 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 167 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 168 | 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x1b, 0xff, 0x80, 0x0, 0x0, 0x0, 169 | 0x0, 0x0, 0x1c, 0xf0, 0x0, 0x1a, 0x39, 0x80, 0x0, 0x0, 0x0, 170 | 0x0, 0x0, 0x1c, 0x70, 0x0, 0x12, 0x39, 0x0, 0x0, 0x0, 0x0, 171 | 0x0, 0x0, 0x1c, 0xe3, 0xcc, 0x30, 0x38, 0x79, 0xc0, 0x0, 0x0, 172 | 0x0, 0x0, 0x1c, 0xe1, 0xd8, 0x30, 0x38, 0x39, 0x0, 0x0, 0x0, 173 | 0x0, 0x0, 0x1f, 0x80, 0xf0, 0x20, 0x38, 0x1f, 0x0, 0x0, 0x0, 174 | 0x0, 0x0, 0x1d, 0xc0, 0xe0, 0x60, 0x38, 0xe, 0x0, 0x0, 0x0, 175 | 0x0, 0x0, 0x1d, 0xe0, 0xf0, 0x60, 0x38, 0xe, 0x0, 0x0, 0x0, 176 | 0x0, 0x0, 0x1c, 0xe0, 0xf8, 0x40, 0x38, 0x1f, 0x0, 0x0, 0x0, 177 | 0x0, 0x0, 0x1c, 0x71, 0x3c, 0xc0, 0x38, 0x33, 0x80, 0x0, 0x0, 178 | 0x0, 0x0, 0x3c, 0x3f, 0x1c, 0xc0, 0x7c, 0x73, 0xc0, 0x0, 0x0, 179 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 180 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 181 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 182 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 183 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 184 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 185 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 186 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 187 | 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 188 | 0x0, 0x0, 0x1, 0x80, 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 189 | 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x8, 0x0, 0x0, 0x0, 190 | 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x8, 0x0, 0x0, 0x0, 191 | 0x0, 0x0, 0x2, 0xe, 0x38, 0xe3, 0x8e, 0x8, 0x0, 0x0, 0x0, 192 | 0x0, 0x0, 0x3, 0xf, 0x3d, 0xf7, 0xdf, 0x10, 0x0, 0x0, 0x0, 193 | 0x0, 0x0, 0x1, 0x1f, 0x7d, 0xf7, 0xdf, 0x10, 0x0, 0x0, 0x0, 194 | 0x0, 0x0, 0x1, 0xf, 0x3c, 0xf7, 0x9e, 0x10, 0x0, 0x0, 0x0, 195 | 0x0, 0x0, 0x1, 0x6, 0x18, 0x61, 0xc, 0x10, 0x0, 0x0, 0x0, 196 | 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 197 | 0x0, 0x0, 0x1, 0x80, 0x0, 0x0, 0x0, 0x30, 0x0, 0x0, 0x0, 198 | 0x0, 0x0, 0x0, 0x81, 0xc7, 0x18, 0x60, 0x20, 0x0, 0x0, 0x0, 199 | 0x0, 0x0, 0x0, 0x81, 0xef, 0xbc, 0xf0, 0x20, 0x0, 0x0, 0x0, 200 | 0x0, 0x0, 0x0, 0x83, 0xef, 0xbe, 0xf8, 0x20, 0x0, 0x0, 0x0, 201 | 0x0, 0x0, 0x0, 0x83, 0xef, 0xbc, 0xf0, 0x20, 0x0, 0x0, 0x0, 202 | 0x0, 0x0, 0x0, 0xc1, 0xc7, 0x1c, 0x60, 0x60, 0x0, 0x0, 0x0, 203 | 0x0, 0x0, 0x0, 0x40, 0x0, 0x0, 0x0, 0x60, 0x0, 0x0, 0x0, 204 | 0x0, 0x0, 0x0, 0x40, 0x0, 0x0, 0x0, 0x40, 0x0, 0x0, 0x0, 205 | 0x0, 0x0, 0x0, 0x60, 0x0, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 206 | 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 207 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 208 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 209 | 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 210 | }; 211 | -------------------------------------------------------------------------------- /hardware/IMG_20150610_111351_951.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EjaadTech/Engineers-Multi-Tool/ec91b0c6df83bb3a0e51a03b6c00bd92e2d6e012/hardware/IMG_20150610_111351_951.jpg -------------------------------------------------------------------------------- /hardware/IMG_20150610_111421_223.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EjaadTech/Engineers-Multi-Tool/ec91b0c6df83bb3a0e51a03b6c00bd92e2d6e012/hardware/IMG_20150610_111421_223.jpg -------------------------------------------------------------------------------- /hardware/IMG_20150610_111428_892.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EjaadTech/Engineers-Multi-Tool/ec91b0c6df83bb3a0e51a03b6c00bd92e2d6e012/hardware/IMG_20150610_111428_892.jpg -------------------------------------------------------------------------------- /hardware/IMG_20150610_111452_189.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EjaadTech/Engineers-Multi-Tool/ec91b0c6df83bb3a0e51a03b6c00bd92e2d6e012/hardware/IMG_20150610_111452_189.jpg -------------------------------------------------------------------------------- /hardware/IMG_5694.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EjaadTech/Engineers-Multi-Tool/ec91b0c6df83bb3a0e51a03b6c00bd92e2d6e012/hardware/IMG_5694.JPG -------------------------------------------------------------------------------- /hardware/IMG_5698.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EjaadTech/Engineers-Multi-Tool/ec91b0c6df83bb3a0e51a03b6c00bd92e2d6e012/hardware/IMG_5698.JPG -------------------------------------------------------------------------------- /hardware/IMG_5699.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EjaadTech/Engineers-Multi-Tool/ec91b0c6df83bb3a0e51a03b6c00bd92e2d6e012/hardware/IMG_5699.JPG -------------------------------------------------------------------------------- /hardware/IMG_5700.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EjaadTech/Engineers-Multi-Tool/ec91b0c6df83bb3a0e51a03b6c00bd92e2d6e012/hardware/IMG_5700.JPG -------------------------------------------------------------------------------- /hardware/IMG_5701.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EjaadTech/Engineers-Multi-Tool/ec91b0c6df83bb3a0e51a03b6c00bd92e2d6e012/hardware/IMG_5701.JPG -------------------------------------------------------------------------------- /hardware/IMG_5702.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EjaadTech/Engineers-Multi-Tool/ec91b0c6df83bb3a0e51a03b6c00bd92e2d6e012/hardware/IMG_5702.JPG -------------------------------------------------------------------------------- /hardware/IMG_5704.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EjaadTech/Engineers-Multi-Tool/ec91b0c6df83bb3a0e51a03b6c00bd92e2d6e012/hardware/IMG_5704.JPG -------------------------------------------------------------------------------- /hardware/IMG_5705.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EjaadTech/Engineers-Multi-Tool/ec91b0c6df83bb3a0e51a03b6c00bd92e2d6e012/hardware/IMG_5705.JPG -------------------------------------------------------------------------------- /hardware/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EjaadTech/Engineers-Multi-Tool/ec91b0c6df83bb3a0e51a03b6c00bd92e2d6e012/hardware/Thumbs.db -------------------------------------------------------------------------------- /hardware/purza handheld/eagle.epf: -------------------------------------------------------------------------------- 1 | [Eagle] 2 | Version="07 02 00" 3 | Platform="Windows" 4 | Serial="62191E841E-LSR-WLM-1EL" 5 | Globals="Globals" 6 | Desktop="Desktop" 7 | 8 | [Globals] 9 | AutoSaveProject=1 10 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/GeekAmmo.lbr" 11 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/LilyPad-Wearables.lbr" 12 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/Seeed-OPL-Antenna.lbr" 13 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/Seeed-OPL-Button.lbr" 14 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/Seeed-OPL-Capacitor.lbr" 15 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/Seeed-OPL-Connector.lbr" 16 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/Seeed-OPL-Crystal-osctllator.lbr" 17 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/Seeed-OPL-Diode.lbr" 18 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/Seeed-OPL-Display.lbr" 19 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/Seeed-OPL-Fuse.lbr" 20 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/Seeed-OPL-IC.lbr" 21 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/Seeed-OPL-Inductor.lbr" 22 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/Seeed-OPL-Moudle.lbr" 23 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/Seeed-OPL-Relay.lbr" 24 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/Seeed-OPL-Resistor.lbr" 25 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/Seeed-OPL-Switch.lbr" 26 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/Seeed-OPL-Transistor.lbr" 27 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/Seeed-OPL-sensor.lbr" 28 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/SparkFun-Aesthetics.lbr" 29 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/SparkFun-AnalogIC.lbr" 30 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/SparkFun-Boards.lbr" 31 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/SparkFun-Capacitors.lbr" 32 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/SparkFun-Connectors.lbr" 33 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/SparkFun-DigitalIC.lbr" 34 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/SparkFun-DiscreteSemi.lbr" 35 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/SparkFun-Displays.lbr" 36 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/SparkFun-Electromechanical.lbr" 37 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/SparkFun-FreqCtrl.lbr" 38 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/SparkFun-LED.lbr" 39 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/SparkFun-Passives.lbr" 40 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/SparkFun-PowerIC.lbr" 41 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/SparkFun-RF.lbr" 42 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/SparkFun-Resistors.lbr" 43 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/SparkFun-Retired.lbr" 44 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/SparkFun-Sensors.lbr" 45 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/User-Submitted.lbr" 46 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/display.lbr" 47 | UsedLibrary="C:/Users/Jailbeaker/Documents/eagle/library/jet-lib.lbr" 48 | 49 | [Win_1] 50 | Type="Control Panel" 51 | Loc="375 165 974 564" 52 | State=3 53 | Number=0 54 | 55 | [Desktop] 56 | Screen="1366 768" 57 | Window="Win_1" 58 | -------------------------------------------------------------------------------- /hardware/purza handheld/purza.b#8: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | <h3>SparkFun Electronics' preferred foot prints</h3> 153 | In this library you'll find connectors and sockets- basically anything that can be plugged into or onto.<br><br> 154 | We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com. 155 | <br><br> 156 | <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 157 | <br><br> 158 | You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | >NAME 178 | >VALUE 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | >NAME 207 | >VALUE 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | Name 252 | Value 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | <h3>SparkFun Electronics' preferred foot prints</h3> 262 | In this library you'll find all manner of retired footprints for resistors, capacitors, board names, ICs, etc., that are no longer used in our catalog.<br><br> 263 | We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com. 264 | <br><br> 265 | <b>Licensing:</b>Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 266 | <br><br> 267 | You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. 268 | 269 | 270 | <b>OMRON SWITCH</b> 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | >NAME 296 | 297 | 298 | 299 | 300 | 301 | 302 | <b>Diode</b> 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | >NAME 329 | >VALUE 330 | >NAME 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | >NAME 346 | >VALUE 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | >NAME 356 | >VALUE 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | >NAME 401 | >TYPE 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | <h3>SparkFun Electronics' preferred foot prints</h3> 417 | In this library you'll find discrete semiconductors- transistors, diodes, TRIACs, optoisolators, etc.<br><br> 418 | We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com. 419 | <br><br> 420 | <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 421 | <br><br> 422 | You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | >NAME 433 | >VALUE 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | >NAME 467 | >VALUE 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | <b>0805<b><p> 506 | 507 | 508 | 509 | 510 | 511 | 512 | >NAME 513 | >VALUE 514 | 515 | 516 | 517 | 518 | 519 | 520 | 521 | 522 | 523 | 524 | 525 | 526 | 527 | 528 | <b>EAGLE Design Rules</b> 529 | <p> 530 | Die Standard-Design-Rules sind so gewählt, dass sie für 531 | die meisten Anwendungen passen. Sollte ihre Platine 532 | besondere Anforderungen haben, treffen Sie die erforderlichen 533 | Einstellungen hier und speichern die Design Rules unter 534 | einem neuen Namen ab. 535 | <b>EAGLE Design Rules</b> 536 | <p> 537 | The default Design Rules have been set to cover 538 | a wide range of applications. Your particular design 539 | may have different requirements, so please make the 540 | necessary adjustments and save your customized 541 | design rules under a new name. 542 | 543 | 544 | 545 | 546 | 547 | 548 | 549 | 550 | 551 | 552 | 553 | 554 | 555 | 556 | 557 | 558 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 | 624 | 625 | 626 | 627 | 628 | 629 | 630 | 631 | 632 | 633 | 634 | 635 | 636 | 637 | 638 | 639 | 640 | 641 | 642 | 643 | 644 | 645 | 646 | 647 | 648 | 649 | 650 | 651 | 652 | 653 | 654 | 655 | 656 | 657 | 658 | 659 | 660 | 661 | 662 | 663 | 664 | 665 | 666 | 667 | 668 | 669 | 670 | 671 | 672 | 673 | 674 | 675 | 676 | 677 | 678 | 679 | 680 | 681 | 682 | 683 | 684 | 685 | 686 | 687 | 688 | 689 | 690 | 691 | 692 | 693 | 694 | 695 | 696 | 697 | 698 | 699 | 700 | 701 | 702 | 703 | 704 | 705 | 706 | 707 | 708 | 709 | 710 | 711 | 712 | 713 | 714 | 715 | 716 | 717 | 718 | 719 | 720 | 721 | 722 | 723 | 724 | 725 | 726 | 727 | 728 | 729 | 730 | 731 | 732 | 733 | 734 | 735 | 736 | 737 | 738 | 739 | 740 | 741 | 742 | 743 | 744 | 745 | 746 | 747 | 748 | 749 | 750 | 751 | 752 | 753 | 754 | 755 | 756 | 757 | 758 | 759 | 760 | 761 | 762 | 763 | 764 | 765 | 766 | 767 | 768 | 769 | 770 | 771 | 772 | 773 | 774 | 775 | 776 | 777 | 778 | 779 | 780 | 781 | 782 | 783 | 784 | 785 | 786 | 787 | 788 | 789 | 790 | 791 | 792 | 793 | 794 | 795 | 796 | 797 | 798 | 799 | 800 | 801 | 802 | 803 | 804 | 805 | 806 | 807 | 808 | 809 | 810 | 811 | 812 | 813 | 814 | 815 | 816 | 817 | 818 | 819 | 820 | 821 | 822 | 823 | 824 | 825 | 826 | 827 | 828 | 829 | 830 | 831 | 832 | 833 | 834 | 835 | 836 | 837 | 838 | 839 | 840 | 841 | 842 | 843 | 844 | 845 | 846 | 847 | 848 | 849 | 850 | 851 | 852 | 853 | 854 | 855 | 856 | 857 | 858 | 859 | 860 | 861 | 862 | 863 | 864 | 865 | 866 | 867 | 868 | 869 | 870 | 871 | 872 | 873 | 874 | 875 | 876 | 877 | 878 | 879 | 880 | 881 | 882 | 883 | 884 | 885 | 886 | 887 | 888 | 889 | 890 | 891 | 892 | 893 | 894 | 895 | 896 | 897 | 898 | 899 | 900 | 901 | 902 | 903 | 904 | 905 | 906 | 907 | 908 | 909 | 910 | 911 | 912 | 913 | 914 | 915 | 916 | 917 | 918 | 919 | 920 | 921 | 922 | 923 | 924 | 925 | 926 | 927 | 928 | 929 | 930 | 931 | 932 | 933 | 934 | 935 | 936 | 937 | 938 | 939 | 940 | 941 | 942 | 943 | 944 | 945 | 946 | 947 | 948 | 949 | 950 | 951 | 952 | 953 | 954 | 955 | 956 | 957 | 958 | 959 | 960 | 961 | 962 | 963 | 964 | 965 | 966 | 967 | 968 | 969 | 970 | 971 | 972 | 973 | 974 | 975 | 976 | 977 | 978 | 979 | 980 | 981 | 982 | 983 | 984 | 985 | 986 | 987 | 988 | 989 | 990 | 991 | 992 | 993 | 994 | 995 | 996 | 997 | 998 | 999 | 1000 | 1001 | 1002 | 1003 | 1004 | 1005 | 1006 | 1007 | 1008 | 1009 | 1010 | 1011 | 1012 | 1013 | 1014 | 1015 | 1016 | 1017 | 1018 | 1019 | 1020 | 1021 | 1022 | 1023 | 1024 | 1025 | 1026 | 1027 | 1028 | 1029 | 1030 | 1031 | 1032 | 1033 | 1034 | 1035 | 1036 | 1037 | 1038 | 1039 | 1040 | 1041 | 1042 | 1043 | 1044 | 1045 | 1046 | 1047 | 1048 | 1049 | 1050 | 1051 | 1052 | 1053 | 1054 | 1055 | 1056 | 1057 | 1058 | 1059 | 1060 | 1061 | 1062 | 1063 | 1064 | 1065 | 1066 | 1067 | 1068 | 1069 | 1070 | 1071 | 1072 | 1073 | 1074 | 1075 | 1076 | 1077 | 1078 | 1079 | 1080 | 1081 | 1082 | 1083 | 1084 | 1085 | 1086 | 1087 | 1088 | 1089 | 1090 | 1091 | 1092 | 1093 | 1094 | 1095 | 1096 | 1097 | 1098 | 1099 | 1100 | 1101 | 1102 | 1103 | 1104 | 1105 | 1106 | 1107 | 1108 | 1109 | 1110 | 1111 | 1112 | 1113 | 1114 | 1115 | 1116 | 1117 | 1118 | 1119 | 1120 | 1121 | 1122 | 1123 | 1124 | 1125 | 1126 | 1127 | 1128 | 1129 | 1130 | 1131 | 1132 | 1133 | 1134 | 1135 | 1136 | 1137 | 1138 | 1139 | 1140 | 1141 | 1142 | 1143 | 1144 | 1145 | 1146 | 1147 | --------------------------------------------------------------------------------