Arduino and NRF52840 Interfacing
Arduino and NRF52840 Interfacing
Why do you particularly want to use I2C? Wouldn't a UART connection be simpler?
What is the role of the Arduino? The nRF52840 is a Cortex-M4 - far more powerful than most Arduinos!
Anyhow, to do this, you would need to program the NRF52840-DK as an I2C Slave.
The SDK has an example which includes I2C Slave:
Then you would have to devise some protocol over this link by which your Arduino could communicate with the nRF, and implement that in both the Arduino and the NRF52840-DK ...