preliminaries

Brd2svg is a tool for converting EAGLE .brd files to Fritzing parts.We make no guarantees about brd2svg's usefulness or suitability, and furthermore the program is unsupported: we will cheerfully ignore all questions, bug reports and feature requests. We release brd2svg under the same open-source license as that of the overall Fritzing project (GPL2/GPL3).

how to build it

Brd2svg relies on the Qt Framework, specifically Qt 4.8.x (4.7.x will probably also work). It will most likely not compile under Qt 5, though we may eventually make the necessary modifications to do so. To build brd2svg, you first have to install the Qt SDK, and then easiest path for building it is to use Qt Creator (available on the same download page) to open brd2svg.pro. We have built and used brd2svg on both Mac and Windows (though it has been some time since anyone has used the Mac build). It should also work under Linux.

how it works

First create a working folder. Inside that folder, create a subfolder called 'brds'. Place all the .brd files you want to convert into the brds folder--brd2svg will convert all the .brd files in the folder in a single run.

Brd2svg first converts a .brd file into an xml representation (one .xml file per .brd). In order to carry out the conversion, brd2svg launches EAGLE which runs a script (a .ulp file). Therefore, in order to run brd2svg you must have a version of EAGLE installed (5.0 and up). (With version 6.0, .brd files are already in an xml format--the .ulp script was what you had to use in prior versions. Someday we will change brd2svg to work directly with the newer .brd xml format, so it will no longer be necessary to install EAGLE to run brd2svg.)

The xml files are placed into an 'xml' folder which is created inside the working folder. Once the .xml file for a given .brd has been generated, subsequent runs of brd2svg will not create the .xml file again. If you make a change to the original .brd file, or you just want to clear the decks for some reason, delete the .xml file of choice, and the next time brd2svg runs the .xml file will be regenerated.

Next brd2svg creates a default .params file (one .params file per .brd). These are placed into a 'params' folder inside the working folder. The params file gives you a certain measure of control over how the .xml files are turned into Fritzing parts (more about this below). As with the .xml files, once a .params file is created, it is not modified on subsequent runs of brd2svg.

An important thing to note about .params files, is that they are created the first time you run brd2svg on a batch of .brd files. It is only on subsequent runs of brd2svg that .params files are actually used. Therefore, you must run brd2svg on the same set of .brd files at least twice. It turns out that using brd2svg tends to be iterative, so in general you run brd2svg many times on the same set of .brd files. Basically the process is: run brd2svg--change the params files--run brd2svg--change the params files... At some point, it becomes easier to modify the generated .svg and .fzp files with other tools, but then if you run brd2svg again on the same .brd files, your changes will be wiped out. So it is a bit of a fine art to decide when to stop using brd2svg for a given set of .brd files.

The Fritzing parts files generated by brd2svg are placed in a 'parts' folder inside the working folder. The subfolders inside the parts folder are organized the same way as they are in the Fritzing distribution: .fzp files are placed in parts/core and the svg files are place into parts/svg/core/breadboard, parts/svg/core/schematic, and parts/svg/core/pcb. There is an option to place parts into 'contrib' instead of 'core' folders. To test your new parts in Fritzing, you only need to copy the parts folder into your local Fritzing user storage area into the 'parts' folder you find there (in other words, this is a merge operation--which works nicely under Windows and has become recently available under Mac; perhaps this is also straightforward under Linux). The location of the Fritzing user storage area varies by platform. Under Windows 7 you can find it at something like 'C:\Users\{your user name}\AppData\Roaming\Fritzing'. Under Mac and Linux you can find it at ~/.config/Fritzing.

Note that even after copying the files into the Fritzing local storage area, the new parts won't be immediately visible in a Parts Bin the next time you run Fritzing. Use the Parts Bin search field to find the new parts. Alternatively, brd2svg also creates a bin (.fzb) file. Once Fritzing is launched, use the File > Open menu item to load the .fzp file and all the new parts you have created should be visible in that bin.

usage

Brd2svg is accessed from the command line, there is no GUI. The syntax is:

brd2svg -w <path to working folder> -e <path to eagle executable> -c <core or contrib> -g -p <subparts folder> -s <2nd subparts folder> -a <and folder>

Normally you won't use the -g option--this creates breakout-board images for breadboard view. For the -p and -s options, you will probably use the two subparts folders that ship with Fritzing: {Fritzing}/parts/subparts and {Fritzing}/parts/subparts2d. The 'and' folder is part of the source for brd2svg--it contains the .ulp script as well as a file called all.packages.txt, and a sample metadata file (see below for more about these two files).

controlling brd2svg output

Fritzing parts consist of multiple files, one metadata file (.fzp) and a set of .svg
files which represent different views: schematic, pcb, breadboard, and icon. Brd2svg generates the .fzp file plus three .svg files--one for each of breadboard, schematic, and pcb view. The breadboard image is reused for the icon view.

There are four ways you can influence what brd2svg writes into the .fzp and .svg files (beyond what the original .brd file specifies):
  1. .txt files in the descriptions folder (one per .brd file)
  2. metadata.dif (one per working folder)
  3. all.packages.txt (tends to be used across projects, found in 'and')
  4. .params files (one per .brd file)
The .params files deal with part metadata (the .fzp file) as well as appearance (.svg files); the metadata.dif controls metadata (the .fzp file) and board color (the breadboard .svg); the all.packages.txt file controls breadboard .svg features; and the description files are for part metadata. If both params.xml and metadata.dif contain a value for the same piece of metadata for a part (i.e. board color), metadata.dif overrides .params.

1. description files
A description file is a text file containing the description metadata for a given part. The description file has the same basename as the .brd file it relates to, with a .txt extension. The description can contain html, but it must be of the limited variety that Qt Rich Text can support.

2. metadata.dif
The metadata.dif file
is a spreadsheet that has been exported in data interchange format (.dif). The metadata file must be called "metadata.dif" and is placed into the working folder. Metadata.dif is best used when you are dealing with a large set of parts; for only a few parts modifying the individual .params files will be sufficient.

The set of columns in metadata.dif is:
Tags are comma-separated strings. Properties are name/value pairs, where the name is separated from the value by a colon and the pairs are separated by semicolons. For example here are three properties: "Voltage: 3.3V; Digital Pins: 14; Analog Pins: 6". Perhaps it is best to look at the sample metadata.csv file in the project's 'and' folder to get a sense of the spreadsheet. Remember to export the spreadsheet as a .dif or brd2svg will ignore it.

Note: 'family' is required for every Friting part. Generally a single family contains a group of closely related parts which have different properties. For example, a family of different resistors each having a different value of resistance and tolerance (where 'resistance' and 'tolerance' are properties).

Color is the color of the board. It can be the usual html color string, but the following presets are available:
The url has an interesting feature in metadata.dif. Because SparkFun boards are frequently converted to Fritzing parts, brd2svg will attempt to follow the link given in the url (which leads to an RSS feed on the SparkFun site) and will save the resulting description into the appropriate descriptions.txt file. Once a descriptions.txt file is created, it is not overwritten in subsequent runs of brd2svg.

3. all.packages.txt
If there is a subpart (i.e. .svg file in one of the subparts folders) bearing the same name as a .brd 'package', brd2svg will insert that svg into the breadboard view image. All.packages.txt
further determines how certain subparts (aka 'packages') are converted to svg elements. For example, the line

   <package name='1210' ic='yes' />

means that if no subpart svg is found, brd2svg will draw a small rectangular 'chip' on the board to represent that package. The line

   <map package='1x02' to='1X02_LOCK' />


means that the same subpart .svg will be used for the 1x02_LOCK package as was used to draw the 1x02 package.

4. .params
Params files are xml files containing the usual part  metadata: title, author, description, etc. But there is much more, including setting the board color, xml to specify pin placement in schematic view, and ways to 'nudge' or hide individual packages. When brd2svg is run for the first time on a given .brd file, it generates a .params file, and to some extent the .params file is self-documenting--it is worth opening up one of these in a text editor to get a sense of some of the options available. In fact, please have a look at a generated params file before you try to follow the rest of this section.

Here is a quick look at some of features of a .params file.

warning

As of this writing (19 July 2013), brd2svg generates schematic images according to a spec that has now been superseded. Please be aware that any schematic images you make using this version of the program will likely become obsolete in the next few months. We plan to update brd2svg to fit the new spec, but the timing is not certain.