1# Install instructions
2
3## 1. Copy the files locally
4
5Copy the `RP-Pico Libraries` folder wherever you like on your computer.
6
7## 2. Install the Raspberry Pi Pico board schema symbol
8
9Use the `KiCad | Preferences | Manage Symbol Libraries...` command to manage the symbol library:
10
11
12
13then select the global tab and click on the folder button:
14
15
16
17navigate to the `RP-Pico Libraries` folder, select the `MCU_RaspberryPi_and_Boards.kicad_sym` file and open it:
18
19
20
21et voilĂ , the first step is completed:
22
23
24
25You can now close the symbol libraries manager window.
26
27## 3. Install the Raspberry Pi Pico board footprint
28
29You can use a similar approach to add the footprint to the footprint libraries manager, but I've found some issues that I've solved using the footprint editor, so here are the steps I suggest you to follow:
30
31Open the footprint editor
32
33
34
35wait for the footprints to load... then use the `File | Add Library` command:
36
37
38
39confirm the `Global` choice:
40
41
42
43and select the `MCU_RaspberriPi_and_Boards.pretty` folder (yes, the folder represent a footprint library on KiCad):
44
45
46
47Now the library is installed on KiCad with the Raspberry Pi Pico footprint (double click on it to see it on the editor pane):
48
49
50
51Don't close the windows as the next step start from here.
52
53## 4. Install the Raspberry Pi Pico board footprint 3D visual
54
55If not already open, open the the footprint editor
56
57
58
59double click on the `RPi_Pico_SMD_TH` footprint from the `MCU_RaspberriPi_and_Boards` library and then click on the `Footprint properties` icon:
60
61
62
63In the footprint properties window, first select the `3D Settings` tab. Please note that the preview shows only the PCB board with the footprint added on step 3, without any 3D representation of the Raspberry Pi Pico board. Now click on the folder icon to add the 3D model:
64
65
66
67Navigate to the `RP-Pico Libraries` folder, select the `Pico.wrl` file and wait until the model is shown in the right panel, then confirm with OK:
68
69
70
71The model is already scaled and translated to match the footprint:
72
73
74
75now close the `Footprint Properties` window, and the `Footprint Editor`, obviously saving the changes.
76
77## Conclusion
78
79Now that you've installed the schema and footprint and added the 3D model to the footprint, you can use the Raspberry Pi Pico board on your KiCad projects.
80
81I've also added a test KiCad Project on the `Test` folder, that you can use to see an example of it.
82
83Have fun!