주요 콘텐츠

sendTo

Export generated Gerber Files to service provider

Description

sendTo(pcbWriterobject) opens the manufacturing service browser page on your default web browser and opens the folder containing the Gerber files.

For example, if the manufacturing service is MayhewWriter, then sendTo action opens the Mayhew Labs online PCB viewer in your default web browser. This function also opens the folder containing the Gerber files. This simplifies use of the service, enabling you to drag and drop the files to the website and view the design.

example

Examples

collapse all

Create a coplanar inverted F antenna.

fco = invertedFcoplanar(Height=14e-3, GroundPlaneLength=100e-3, ...
                  GroundPlaneWidth=100e-3);

Use this antenna in creating a pcb stack object.

p = pcbStack(fco);

Use a SMA_Cinch as an RF connector and Mayhew Writer as a manufacturing service.

c = PCBConnectors.SMA_Cinch;
s = PCBServices.MayhewWriter;

Create an antenna design file using PCBWriter.

PW = PCBWriter(p,s,c);

Use the gerberWrite method to create Gerber files from the antenna design files.

gerberWrite(PW)

Open the manufacturing service website to send the Gerber files.

sendTo(PW)

Input Arguments

collapse all

Antenna design files, specified as a PCBWriter object.

Example: p1 = pcbStack creates a PCB stack object.p1 a = PCBWriter(p1).

Version History

Introduced in R2017b

See Also

|