0
0
Embedded-cHow-ToBeginner · 4 min read

How to Order PCB from PCBWay: Step-by-Step Guide

To order a PCB from PCBWay, first prepare your Gerber files and upload them on the PCBWay website. Then configure your PCB specifications like layers and quantity, add to cart, and complete payment to place your order.
📐

Syntax

Ordering a PCB from PCBWay follows a simple pattern:

  • Prepare Files: Generate Gerber files from your PCB design software.
  • Upload Files: Upload Gerber files on PCBWay's order page.
  • Configure: Choose PCB options like layers, thickness, color, and quantity.
  • Review & Pay: Check the order summary and complete payment.
pseudo
OrderPCBFromPCBWay(gerber_files, layers, thickness, color, quantity) {
  Upload(gerber_files)
  SelectOptions(layers, thickness, color)
  SetQuantity(quantity)
  ReviewOrder()
  MakePayment()
  ConfirmOrder()
}
💻

Example

This example shows the typical steps on PCBWay's website to order a 2-layer PCB with green solder mask and 10 pieces quantity.

text
1. Prepare Gerber files from your PCB design tool.
2. Go to https://www.pcbway.com/instant_quote.html
3. Upload your Gerber files.
4. Select <strong>Layers:</strong> 2
5. Select <strong>Thickness:</strong> 1.6mm
6. Select <strong>Color:</strong> Green
7. Enter <strong>Quantity:</strong> 10
8. Click <strong>Calculate Price</strong>
9. Add to cart and proceed to checkout
10. Enter shipping and payment details
11. Confirm and place your order
Output
Order placed successfully with estimated delivery date shown on confirmation page.
⚠️

Common Pitfalls

Common mistakes when ordering PCBs from PCBWay include:

  • Uploading incomplete or incorrect Gerber files causing manufacturing delays.
  • Choosing wrong PCB specifications like layer count or thickness.
  • Not reviewing the order summary before payment.
  • Ignoring shipping options and delivery times.

Always double-check your files and options before confirming.

pseudo
Wrong way:
Upload(gerber_files_missing_layers)
SelectOptions(layers=4)  // But files only have 2 layers
MakePayment()

Right way:
Upload(complete_gerber_files)
SelectOptions(layers=2)
ReviewOrder()
MakePayment()
📊

Quick Reference

Summary tips for ordering PCBs from PCBWay:

  • Always generate and verify complete Gerber files.
  • Use PCBWay's instant quote tool to check prices and options.
  • Choose correct PCB parameters matching your design.
  • Review shipping and delivery times before payment.
  • Contact PCBWay support if unsure about file formats or options.

Key Takeaways

Prepare and verify your Gerber files before uploading to PCBWay.
Use PCBWay's online tool to configure PCB specs and get instant quotes.
Double-check all options and order summary before making payment.
Select shipping options carefully to meet your delivery needs.
Contact PCBWay support for help with file formats or order questions.