AGirs
girs_pins.h
Go to the documentation of this file.
1 #pragma once
2 
3 #if defined(ARDUINO_AVR_NANO)
4 // Configuration for Arduino Nano with components soldered on the PCB.
5 //#include "girs_pins_nano_shield.h"
6 #include "girs_pins_nano.h"
7 #elif defined(ARDUINO_AVR_MICRO)
8 // Configuration for Arduino Micro with components soldered on the PCB.
9 #include "girs_pins_micro.h"
10 #elif defined(ARDUINO_AVR_MEGA2560)
11 #ifdef ETHERNET
13 #else // ! ETHERNET
14 #include "girs_pins_mega2560.h"
15 #endif // ! ETHERNET
16 #elif defined(ARDUINO_AVR_LEONARDO)
17 #include "girs_pins_leonardo.h"
18 #else
19 // Generic configuration for Uno-like boards
20 //#include "girs_pins_combi_shield.h"
21 #include "girs_pins_default.h"
22 #endif