Hi @DanielLongo
You can find it in board.c
Harry_Zhang_0-1782879080472.png
The default pins "0" and "1" are 25 3
If you want to change them to PIO0_22 and PIO0_23.
You just need to change to
#define MAXLEDS 3
static const uint8_t ledpins[MAXLEDS] = {22, 23, 1};
static const uint8_t ledports[MAXLEDS] = {0, 0, 1};
Hope this will help you.
BR
Harry