How to connect MKI197V1 to NUCLEO-F756ZGT via I2C but without an expansion board.
The problem is that the address of the device is unknown, I tried 0xD4, D5, D6, D7, A6 and many others, zero reaction.
To check, I use the function:
#define SENSOR_ADDRESS 0xD4
if (HAL_I2C_IsDeviceReady(&hi2c1, SENSOR_ADDRESS, 2, 10) == HAL_OK)
{
HAL_GPIO_TogglePin(Green_led_GPIO_Port, Green_led_Pin);
}

