Complete the code to start a manual trace from the selected pad.
start_trace = pcb_board.[1](selected_pad)The method start_trace is used to begin manual routing from a pad.
Complete the code to add a corner point at the current cursor position during manual routing.
trace.[1](cursor_position)The method add_corner adds a corner point to the trace at the cursor position.
Fix the error in the code to complete the manual trace routing by connecting to the target pad.
trace.[1](target_pad)The correct method to end a manual trace is end_trace, which connects the trace to the target pad.
Fill both blanks to set the trace width and layer before starting manual routing.
trace.set_[1](0.25) trace.set_[2]('TopLayer')
Use width to set the trace thickness and layer to specify the PCB layer.
Fill all three blanks to create a manual trace dictionary with start point, end point, and trace type.
manual_trace = {
'start': [1],
'end': [2],
'type': [3]
}The dictionary keys require the start pad, end pad, and the trace type as 'signal'.
