فایل FZP چیست؟
یک فایل FZP یک فایل XML است که توسط برنامه نمونهسازی و طراحی مدار الکترونیکی Fritzing ایجاد شده است. این شامل اطلاعاتی در مورد ویژگیهای قطعه، رابطها و گذرگاهها در قالب فایل XML است. فایل های FPZ را نمی توان به طور مستقل در Fritzing استفاده کرد. در عوض، آنها به عنوان بخشی از فایل آرشیو FZPZ وارد می شوند.
فرمت فایل FZP - اطلاعات بیشتر
FZP files are XML files that contain information about the part’s properties, connectors, and buses. In addition to these, FZP files also contain information about the title, description, author and date of publishing of the FZP file. When a Fritzing part file is exported, the Fritzing app creates a the FZPZ compressed archive that contains an FZP file and four SVG files.
The FZP file format specifications are available on Github by Fritzing.
مثال ساختار فایل FZP
یک فایل FZP معمولی دارای ساختار XML زیر است.
<?xml version="1.0" encoding="UTF-8"?>
<module fritzingVersion="x.y.z" moduleId="mod-id-rev" referenceFile="ref.file">
<version>x.y.z</version>
<title>part-name</title>
<description>some words about the part</description>
<author>your-name</author>
<date>yyyy-mm-dd</date>
<url>http://part.org</url>
<label>IC</label>
<tags>...</tags>
<taxonomy>...</taxonomy>
<language>...</language>
<family>...</family>
<variant>...</variant>
<properties>...</properties>
<views>...</views>
<connectors>...</connectors>
<buses>...</buses>
</module>