the pin of 'LOVE' is P204.
P204 was not implemented in pins_arduino.h, but it is implemented in io layer (r-ioport.h).
so, you can use it with io layer api.
gist: How to use Arduino UNO R4 MINIMA's LOVE Pin · GitHub
video: how to use LOVE pin on arduino R4 MINIMA - YouTube
void setup() {
// P204 -> PORT 2, PIN 4
R_IOPORT_PinCfg(NULL, BSP_IO_PORT_02_PIN_04, IOPORT_CFG_PORT_DIRECTION_OUTPUT);
}
void loop() {
R_IOPORT_PinWrite(NULL, BSP_IO_PORT_02_PIN_04, BSP_IO_LEVEL_HIGH);
delay(100);
R_IOPORT_PinWrite(NULL, BSP_IO_PORT_02_PIN_04, BSP_IO_LEVEL_LOW);
delay(1000);
}