Complete the code to define a symbol in PCB design.
symbol = create_symbol([1])The symbol represents the logical component, so it is named by the component name.
Complete the code to assign a footprint to a component symbol.
symbol.assign_footprint([1])The footprint is the physical layout pattern assigned to the symbol.
Fix the error in the code to link symbol and footprint correctly.
component = Symbol([1]) component.set_footprint('R_0805')
The Symbol constructor needs the component name, not the footprint name.
Fill both blanks to create a symbol and assign its footprint.
symbol = Symbol([1]) symbol.[2]('QFN-32')
Create the symbol with the component name, then assign the footprint using set_footprint.
Fill all three blanks to define a symbol, assign a footprint, and set pin count.
symbol = Symbol([1]) symbol.[2]([3]) symbol.pin_count = 16
First, create the symbol with the component name, then assign the footprint using set_footprint with the footprint name.
