Complete the code to define a ground pour area on the PCB.
ground_pour = pcb.create_pour(layer='Bottom', net=[1])
The ground pour must be connected to the ground net, which is usually labeled 'GND'.
Complete the code to set the clearance for the ground pour.
ground_pour.set_clearance([1])A typical clearance for ground pours is around 0.5mm to ensure safety and avoid shorts.
Fix the error in the code to correctly add a thermal relief to the ground pour.
ground_pour.add_thermal_relief([1]=True)
The correct parameter name is 'enabled' to turn on thermal relief in the function.
Fill both blanks to create a ground pour with a specific shape and net.
ground_pour = pcb.create_pour(layer=[1], net=[2])
The ground pour is usually on the 'Bottom' layer and connected to the 'GND' net.
Fill all three blanks to define a ground pour with clearance, thermal relief enabled, and on the correct layer.
ground_pour = pcb.create_pour(layer=[1], net='GND') ground_pour.set_clearance([2]) ground_pour.add_thermal_relief([3]=True)
The ground pour is on the 'Bottom' layer, clearance is set to 0.5mm, and thermal relief is enabled with 'enabled=True'.
