Bird
0
0
PCB Designbi_tool~10 mins

Ordering PCBs from fabricators in PCB Design - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to specify the number of PCB layers in the order.

PCB Design
order.layers = [1]
Drag options to blanks, or click blank then click option'
A2
B4
C6
D8
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing too many layers for a simple PCB increases cost unnecessarily.
Leaving the layers field empty causes order errors.
2fill in blank
medium

Complete the code to set the PCB thickness to the common standard.

PCB Design
order.thickness = '[1]'
Drag options to blanks, or click blank then click option'
A2.0mm
B1.0mm
C1.6mm
D0.8mm
Attempts:
3 left
💡 Hint
Common Mistakes
Using a thickness that is too thin can cause mechanical issues.
Choosing a non-standard thickness may increase cost.
3fill in blank
hard

Fix the error in the code to correctly set the solder mask color.

PCB Design
order.solder_mask = '[1]'
Drag options to blanks, or click blank then click option'
Agreen
Bred
Cblue
Dyellow
Attempts:
3 left
💡 Hint
Common Mistakes
Using unsupported colors may delay fabrication.
Leaving the solder mask color blank causes errors.
4fill in blank
hard

Fill both blanks to set the PCB finish type and copper weight.

PCB Design
order.finish = '[1]'
order.copper_weight = '[2]'
Drag options to blanks, or click blank then click option'
AHASL
BENIG
C1oz
D2oz
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing HASL finish when ENIG is required for fine pitch components.
Using 2oz copper weight unnecessarily increases cost.
5fill in blank
hard

Fill all three blanks to set the PCB panelization, minimum drill size, and test method.

PCB Design
order.panelization = '[1]'
order.min_drill = '[2]'
order.test_method = '[3]'
Drag options to blanks, or click blank then click option'
Aarray
B0.2mm
Cflying_probe
Dv-score
Attempts:
3 left
💡 Hint
Common Mistakes
Using v-score panelization when array is required.
Specifying drill sizes smaller than fabricator capabilities.
Choosing test methods not supported by the fabricator.