How the buttons and LEDs are wired
The shield's three buttons sit on analog pins A1, A2 and A3 and read LOW (0) when pressed. The four LEDs are on digital pins 13, 12, 11 and 10 and are active-low: writing HIGH turns an LED off, writing LOW turns it on. That is just how the board is built.
No library is needed for this one. The sketch defines every pin by name at the top so you are not sprinkling magic numbers through the code, then in loop() reads each button and mirrors it onto its LED, printing to the Serial Monitor as well. The small delay stops the Serial Monitor from flooding.
Copy the #define block into anything else you write for this shield.
Buttons light their LEDs