diff options
author | David A. Mellis <d.mellis@arduino.cc> | 2011-08-12 16:59:24 -0400 |
---|---|---|
committer | David A. Mellis <d.mellis@arduino.cc> | 2011-08-12 16:59:24 -0400 |
commit | ca1f64682a51c9097ab699694f85aa0a47bee1d0 (patch) | |
tree | 48d90dc4eae6d22adc73de0f0b94efd80a7c5bde | |
parent | a239d2c541094ef5445159360ae5d2d6a93dbf00 (diff) |
Adding SCL, SDA, and LED #defines.
-rw-r--r-- | pins/mega/pins_arduino.h | 4 | ||||
-rw-r--r-- | pins/standard/pins_arduino.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/pins/mega/pins_arduino.h b/pins/mega/pins_arduino.h index e3785e4..acbd28f 100644 --- a/pins/mega/pins_arduino.h +++ b/pins/mega/pins_arduino.h @@ -32,6 +32,10 @@ const static uint8_t MOSI = 51; const static uint8_t MISO = 50; const static uint8_t SCK = 52; +const static uint8_t SDA = 20; +const static uint8_t SCL = 21; +const static uint8_t LED = 13; + const static uint8_t A0 = 54; const static uint8_t A1 = 55; const static uint8_t A2 = 56; diff --git a/pins/standard/pins_arduino.h b/pins/standard/pins_arduino.h index 8fabb17..b42755d 100644 --- a/pins/standard/pins_arduino.h +++ b/pins/standard/pins_arduino.h @@ -32,6 +32,10 @@ const static uint8_t MOSI = 11; const static uint8_t MISO = 12; const static uint8_t SCK = 13; +const static uint8_t SDA = 18; +const static uint8_t SCL = 19; +const static uint8_t LED = 13; + const static uint8_t A0 = 14; const static uint8_t A1 = 15; const static uint8_t A2 = 16; |