≡
Eagle can be used to generate data for different equipments and machines. On the whole, given its intuitive interface that does not raise any issues at all, Eagle is the right OS X app to choose if you need to design, test or edit custom circuit designs as easy as possible. Circuit board CAD tool.
PagesFavoritedFavorite31Printed circuit boards (PCBs) are the backbone of every electronic gizmo out there. They're not flashy like those microprocessors, or abundant like resistors, but they're essential to making all components in a circuit connect together just right.
We LOVE designing PCBs here at SparkFun. It's a love that we want to spread. It's a skill that benefits electronics enthusiasts of every caliber. Through this and a series of tutorials, we'll explain how to design a PCB using EAGLE -- the same software we use to design all of our PCBs.
This first tutorial goes over how to install the software, and tailor-fit its interface and support files.
EAGLE is one of many PCB CAD softwares out there. So you might ask: 'What makes EAGLE so special?' We're fond of EAGLE for a few reasons in particular:
Of course, EAGLE has its drawbacks too. More powerful PCB design tools out there might have a better autorouter, or nifty tools like simulators, programmers, and 3D viewers. For us though, EAGLE has everything we need to design simple-to-intermediate PCBs. It's an excellent place to start if you've never designed a PCB before.
Here are a few tutorial and concepts you may want to familiarize yourself with before dropping down into this rabbit hole:
EAGLE is available on Cadsoft's (the developer company) download page. Grab the most recent version that matches your operating system (the software is available for Windows, Mac and Linux). It's a relatively light download -- about 45MB.
EAGLE installs just like any old program, it'll self extract and then present you with a series of dialogs to configure the installation.
On the last screen of the installation process, you should be presented with a window like this:
One of our favorite things about EAGLE is that it can be used for free! There are a few limitations to be aware of when using the free version:
Those limitations still make EAGLE an amazing piece of software. Engineers here at SparkFun could design 99% of our boards using the freeware version, if not for that pesky non-profit stipulation. You still have access to all phases of the EAGLE software, including the Autorouter.
If you need to upgrade your license there are a few versions available. Most licenses are still incredibly low priced (in comparing to the other stuff out there).
The first time you open up EAGLE, you should be presented with the Control Panel view. The Control Panel is the 'homebase' for Eagle, it links together all of the other modules in the software.
You can explore the six separate trees in the control panel, which highlight separate functions of the software:
If you select a file in a tree, information about it will appear in the right-hand portion of the window. This is a great way to explore libraries, project designs (EAGLE comes with some fun examples), or to get a good overview of what a script's purpose is.
Included with EAGLE is an impressive list of part libraries, which you can explore in the Control Panel view. There are hundreds of libraries in here, some devoted to specific parts like resistors, or NPN transistors, others are devoted to specific manufacturers. This is an amazing resource! But it can also be a bit overwhelming. Even if you just want to add a simple through-hole electrolytic capacitor, there are dozens of libraries and parts to sort through to find the right thing.
Instead of using the hundreds of default libraries, you can use the SparkFun EAGLE Libraries, which are filtered down to only include the parts that we've used in designs ourselves. And they're constantly updated with new parts we've discovered.
Here's how you can install and use the SparkFun libraries instead of (or in addition to) the default ones:
The most recent version of the libraries can always be found in the GitHub repository. For help using GitHub, check out our Using GitHub tutorial. Basically, all you'll need to do from the main repository page is click 'Download ZIP'.
Save the ZIP file somewhere handy. Then extract the folder -- don't forget where it is!
Back to the EAGLE Control Panel window now. Go to the 'Options' menu and then select 'Directories'. This is a list of computer directories where EAGLE looks when it populates all six objects in the tree view...including libraries.
In the 'Libraries' box is where we'll add a link to the directory where the SparkFun EAGLE libraries are stored. There are a few options here. If you'd like to keep the default libraries and add the SparkFun library, add a semicolon (;) after '$EAGLEDIRlbr', and paste the SparkFun EAGLE Libraries directory location after that.
Note: Mac and Linux users should place a colon (:) between directories instead of the semicolon.
Now, when you go back and look at the 'Libraries' tree, there should be two folders included, one of which should be our SparkFun Eagle Libraries. The last step is to tell EAGLE that, for now at least, we don't want to use the default libraries. To do this, right click on the 'lbr' folder, and select 'Use none'.
Then, right-click on the 'SparkFun-Eagle-Libraries-master' folder, and select 'Use all'. Then check the libraries in each of the two folders. Next to them should be either a grey or green dot. A green dot next to a library means it's in use, a grey dot means it's not. Your libraries tree should look a little something like this:
If you've created library parts that you would like to share with SparkFun to include in our Eagle library, visit this tutorial to see how.
EAGLE is packaged with a handful of nifty example PCB designs. Open one up by expanding the 'Projects' tree. From there, under the 'examples' folder open up the 'arduino' project by double-clicking the red folder (or right-clicking and selecting 'Open project'). Note that, in this view, project folders are red and regular folders are the standard yellow.
Opening the project should cause two more EAGLE windows to spawn: the board and schematic editors. These are the yin and the yang of EAGLE. They should be used together to create the finished product that is a functional PCB design.
The schematic editor (on the left above) is a collection of red circuit symbols which are interconnected with green nets (or wires). A project's schematic is like the comments in a program's code. It helps tell the story of what the board design actually does, but it doesn't have much influence on the end product. Parts in a schematic aren't precisely measured, they're laid out and connected in a way that's easy to read, to help you and others understand what's going on with the board design.
The board editor is where the real magic happens. Here colorful layers overlap and intersect to create a precisely measured PCB design. Two copper layers -- red on top, blue on the bottom -- are strategically routed to make sure different signals don't intersect and short out. Yellow circles (on this design, but they're more often green) called 'vias' pass a signal from one side to the other. Bigger vias allow for through-hole parts to be inserted and soldered to the board. Other, currently hidden, layers expose copper so components can be soldered to it.
Both of these windows work hand-in-hand. Any changes made to the schematic are automatically reflected in the board editor. Whenever you're modifying a design it's important to keep both windows open at all times.
If, for instance, you closed the board window of a design, but continued to modify a schematic. The changes you made to the schematic wouldn't be reflected in the board design. This is bad. The schematic and board design should always be consistent. It's really painful to backtrack any changes in an effort to reattain consistency. Always keep both windows open!
There are a few ways to tell if you don't have consistency between windows. First, there's a 'dot' in the lower-right hand corner of both windows. If the dot is green, everything is groovy. If the dot is magenta, a window's probably closed that shouldn't be. Second, and more obvious, if you close either of the two windows a big, huge warning should pop up in the other:
If you see that warning STOP doing anything, and get the other window back open. The easy way to get either a board or schematic window back open is by clicking the 'Switch to board/schematic' icon -- / (also found under the 'File' menu).
This is a subject that's usually glazed over, but it's important to know how to navigate around both of these windows.
To move around within an editor window, a mouse with a scroll wheel comes in very handy. You can zoom in and out by rotating the wheel forward and backward. Pressing the wheel down, and moving the mouse allows you to drag the screen around.
If you're stuck without a three-button mouse, you'll have to resort to the view options to move around the editor views. All of these tools are located near the middle of the top toolbar, or under the 'View' menu. The zoom in -- -- and zoom out -- -- tools are obviously handy. So is the 'Zoom select' tool -- -- which alters the view to your selection. But really, if you're serious about using EAGLE...get a mouse!
EAGLE's user interface is highly customizable. Anything from the background color, to layer colors, to key bindings can be modified to fit your preference. Better tailoring your interface can make designing a PCB much easier. On this page we'll talk about how we at SparkFun prefer to customize our UI. None of these steps are required. Customize your UI as you see fit. These are just the settings that we've grown accustomed to.
The first adjustment we always make to the UI is the background color of the board editor. The standard white background doesn't always meld very well with the array of colored layers required for board design. Instead, we usually opt for a black background.
To change the background color, go up to the 'Options' menu and select 'User interface'.
Inside the 'Layout' box you can set the background to black, white, or a specific color.
There are other options in this box to be explored, but you may want to hold off on adjusting most until you have more experience with the software.
Another UI improvement we like to make in the board editor is turning the grid on. Dimensions and sizes are so important to the design of your PCB, having some visible reminders of size can be very helpful. To turn the grid view on, click the icon near the top-left corner of the board window (or go to the 'View' menu and select 'Grid').
Switch the 'Display' radio button over to 'On'. We'll also make the grid a bit less fine by setting the 'Size' to 100 mil (0.1') and 'Alt' to 50 mil (0.05').
Scripts are a much more streamlined way to quickly configure your interface. With one click of the button, you can automatically set up all of your colors and key binds. Script files can also be shared, and run by anyone. Running the SparkFun EAGLE script will get your UI to exactly match ours.
First, click here to download the script (in a zip folder). Unzip the 'spk.scr' file to a location you'll remember.
Then you'll need to run the script. In the board window click on the Script icon -- (or go to 'File' then 'Execute Script'). In the file browser, select the 'spk.scr' file you just downloaded and unzipped.
This should automatically set up your color scheme to look a little something like this:
This UI setup presents a nice logical view of the layers. The important copper layers are very visible, but distinct (red on top, blue on bottom, green for vias), and the silkscreen is white as it is on most PCB designs.
All of these colored layers will make more sense as you continue to use and explore EAGLE.
To find SparkFun's most up-to-date script, and other useful files, check out our EAGLE settings repository hosted on GitHub!
If you've got EAGLE set up, and you're chomping at the bit to start designing a PCB, your next step should be over to our 2-part Using EAGLE tutorials: Using EAGLE: Schematic and Using EAGLE: Board Layout. That pair of tutorials will explain how to go from a schematic design, to laying out and routing a PCB, to generating gerber files and sending them to a fab house.
Or here are some other tutorials in our EAGLE series:
Dev-C++ is a Shareware software in the category Internet developed by Dev-C++ beta release (4.9.9.2).
It was checked for updates 1,759 times by the users of our client application UpdateStar during the last month.
The latest version of Dev-C++ is 5.11, released on 04/28/2015. It was initially added to our database on 10/30/2007. The most prevalent version is 5.11, which is used by 71 % of all installations.
Dev-C++ runs on the following operating systems: Android/iOS/Windows/Mac/Linux.
Users of Dev-C++ gave it a rating of 2 out of 5 stars.
Write a review for Dev-C++!
10/02/2020 | Kate's Video Converter (free) 5.479 |
10/02/2020 | Kate's Video Toolkit 8.183 |
10/02/2020 | CrossFTP 1.99.6 |
10/02/2020 | Fake Webcam 7.3.522 |
10/02/2020 | GSA Buchhalter 2.0.8 |
09/28/2020 | New Foxit Reader version fixes security issues |
09/01/2020 | Firefox 80.0.1 update with bug fixes available |
08/26/2020 | New Kaspersky 2021 adds new functionality |
08/25/2020 | Chrome 85 update fixes 20 security vulnerabilities |
08/25/2020 | Firefox 80 and Tor Browser 9.5.4 updates available |