I2C with Max31865 and nrf24l01

I have problems with program running MAX31865 and nRF24i01.
Running one by one is no problem but having MAX31865 and nrf24l01 together wont work.
Programs is running on Arduino nano.
My settings:
#include "Adafruit_MAX31865.h"
Adafruit_MAX31865( 3, 11, 12, 13); // CS,SDI,SDO,CLK
#include <RF24.h>
RF24 radio(9,10);

Any having same problem?

It is SPI for the MAX31865 not I2C and you appear to have mixed up the SPI pins MOSI and MISO: Adafruit_MAX31865/Adafruit_MAX31865.h at master · adafruit/Adafruit_MAX31865 · GitHub

Adafruit_MAX31865(int8_t spi_cs, int8_t spi_mosi, int8_t spi_miso, int8_t spi_clk);

try:
Adafruit_MAX31865( 3, 12, 11, 13); // CS,SDO,SDI,CLK
and change the wiring accordingly
or use the alternative constructor: Adafruit_MAX31865(int8_t spi_cs, SPIClass *theSPI = &SPI);

EDIT
Which Arduino board are you using? Maybe only this comment is wrong: // CS,SDI,SDO,CLK depending on whether it is referring to the Arduino or the peripheral.

Sorry, I wrote i2c but ment SPI.
If i run only MAX31865 and have this:

#include "Adafruit_MAX31865.h"
Adafruit_MAX31865 thermo1 = Adafruit_MAX31865( 3, 11, 12, 13); // CS,SDI,SDO,CLK
Everything works.
But when having added config for nrfl01 MAX stop working.

I am using Arduino nano.
I Have connected MAX31865 SDI to pin 11 (MOSI) and SDO to pin 12 (MISO) and CLK to pin 13 (SCK) CS to pin 7

nRF24l01 have MOSI to pin 11 and MISO to pin 12 and CLK to pin 13. CE to pin 9 and CSN to pin 10.

Each is working separatly but not together!

If you just try: Adafruit_MAX31865 thermo1 = Adafruit_MAX31865( 3 ); // CS , that is without the pin definitions for MOSI, MISO, SCK, does as least the MAX31865 work ?

I'm basing the above on the example:

#include <Adafruit_MAX31865.h>

// Use software SPI: CS, DI, DO, CLK
Adafruit_MAX31865 thermo = Adafruit_MAX31865(10, 11, 12, 13);
// use hardware SPI, just pass in the CS pin
//Adafruit_MAX31865 thermo = Adafruit_MAX31865(10);

but adapted for hardware SPI and your choice of CS pin (3).

Yes it is working standalone.

I have to check with RF24 confi….i will be back soon

YES! Now it works!

1000 Thanks for helping me!!