Using nRF24L01+

oric_dan:
Ok, the library defaults to 1 Mbps data rate, so I patched it 250 Kbps, a

Sounds great, but what are we talking about here?

Is the library RF24.h?

I see line 32 therein has a red zero

typedef enum { RF24_1MBPS = 0, RF24_2MBPS, RF24_250KBPS } rf24_datarate_e;

so can I just alter that to

typedef enum { RF24_1MBPS, RF24_2MBPS, RF24_250KBPS = 0 } rf24_datarate_e;

?

It looks promising........