Hi all, my first post so be gentle! And it is a very simple question. I have found conflicting pin out diagrams for the Pro Mini. Most show pin 12 is MISO and pin 11 MOSI but there are also a few diagrams with these reversed.
Can anyone give me a definitive answer?
Thanks in advance. 
The schematic should be the definite reference.
Thank you! I'll go with that and ignore the other diagrams which show them reversed. 
This is from pins_arduino.h
#define PIN_SPI_SSÂ Â (10)
#define PIN_SPI_MOSIÂ (11)
#define PIN_SPI_MISOÂ (12)
#define PIN_SPI_SCKÂ (13)
static const uint8_t SSÂ = PIN_SPI_SS;
static const uint8_t MOSI = PIN_SPI_MOSI;
static const uint8_t MISO = PIN_SPI_MISO;
static const uint8_t SCKÂ = PIN_SPI_SCK;
So you can use e.g. Serial.println(MOSI) and it should give you the pin number 