Loading...
Searching...
No Matches
arduino_iomap.h File Reference

Mapping from MCU pins to Arduino pins. More...

Detailed Description

Mapping from MCU pins to Arduino pins.

You can use the defines in this file for simplified interaction with the Arduino specific pin numbers.

Author
Marian Buschsieweke maria.nosp@m.n.bu.nosp@m.schsi.nosp@m.ewek.nosp@m.e@ovg.nosp@m.u.de

Definition in file arduino_iomap.h.

#include "periph/gpio.h"
#include "periph/adc.h"
+ Include dependency graph for arduino_iomap.h:

Go to the source code of this file.

Arduino's UART devices

#define ARDUINO_UART_D0D1   UART_DEV(1)
 

Arduino's SPI buses

#define ARDUINO_SPI_D11D12D13   SPI_DEV(0)
 SPI_DEV(1) is connected to D11/D12/D13.
 
#define ARDUINO_SPI_ISP   SPI_DEV(0)
 

Arduino's I2C buses

#define ARDUINO_I2C_UNO   I2C_DEV(0)
 The first I2C bus is where shields for the Arduino UNO/Mega expect it.
 

on-board LED (LED1/D25)

#define ARDUINO_LED   (24)
 

Mapping of MCU pins to Arduino pins

#define ARDUINO_PIN_0   GPIO_PIN(1, 1)
 
#define ARDUINO_PIN_1   GPIO_PIN(1, 2)
 
#define ARDUINO_PIN_2   GPIO_PIN(1, 3)
 
#define ARDUINO_PIN_3   GPIO_PIN(1, 4)
 
#define ARDUINO_PIN_4   GPIO_PIN(1, 5)
 
#define ARDUINO_PIN_5   GPIO_PIN(1, 6)
 
#define ARDUINO_PIN_6   GPIO_PIN(1, 7)
 
#define ARDUINO_PIN_7   GPIO_PIN(1, 8)
 
#define ARDUINO_PIN_8   GPIO_PIN(1, 10)
 
#define ARDUINO_PIN_9   GPIO_PIN(1, 11)
 
#define ARDUINO_PIN_10   GPIO_PIN(1, 12)
 
#define ARDUINO_PIN_11   GPIO_PIN(1, 13)
 
#define ARDUINO_PIN_12   GPIO_PIN(1, 14)
 
#define ARDUINO_PIN_13   GPIO_PIN(1, 15)
 
#define ARDUINO_PIN_14   GPIO_PIN(0, 10)
 
#define ARDUINO_PIN_15   GPIO_PIN(0, 9)
 
#define ARDUINO_PIN_16   GPIO_PIN(0, 8)
 
#define ARDUINO_PIN_17   GPIO_PIN(0, 7)
 
#define ARDUINO_PIN_18   GPIO_PIN(0, 6)
 
#define ARDUINO_PIN_19   GPIO_PIN(0, 5)
 
#define ARDUINO_PIN_20   GPIO_PIN(0, 1)
 
#define ARDUINO_PIN_21   GPIO_PIN(0, 0)
 
#define ARDUINO_PIN_22   GPIO_PIN(0, 11)
 
#define ARDUINO_PIN_23   GPIO_PIN(0, 12)
 
#define ARDUINO_PIN_24   GPIO_PIN(0, 13)
 
#define ARDUINO_PIN_25   GPIO_PIN(0, 14)
 
#define ARDUINO_PIN_26   GPIO_PIN(0, 15)
 
#define ARDUINO_PIN_27   GPIO_PIN(0, 16)
 
#define ARDUINO_PIN_28   GPIO_PIN(0, 17)
 
#define ARDUINO_PIN_29   GPIO_PIN(0, 18)
 
#define ARDUINO_PIN_30   GPIO_PIN(0, 19)
 
#define ARDUINO_PIN_31   GPIO_PIN(0, 20)
 
#define ARDUINO_PIN_32   GPIO_PIN(0, 21)
 
#define ARDUINO_PIN_33   GPIO_PIN(0, 22)
 
#define ARDUINO_PIN_34   GPIO_PIN(0, 23)
 
#define ARDUINO_PIN_35   GPIO_PIN(0, 24)
 
#define ARDUINO_PIN_36   GPIO_PIN(0, 25)
 
#define ARDUINO_PIN_37   GPIO_PIN(1, 0)
 
#define ARDUINO_PIN_38   GPIO_PIN(1, 9)
 
#define ARDUINO_PIN_54   GPIO_PIN(0, 3)
 
#define ARDUINO_PIN_55   GPIO_PIN(0, 4)
 
#define ARDUINO_PIN_56   GPIO_PIN(0, 28)
 
#define ARDUINO_PIN_57   GPIO_PIN(0, 29)
 
#define ARDUINO_PIN_58   GPIO_PIN(0, 30)
 
#define ARDUINO_PIN_59   GPIO_PIN(0, 31)
 
#define ARDUINO_PIN_LAST   59
 

Aliases for analog pins

#define ARDUINO_PIN_A0   ARDUINO_PIN_54
 
#define ARDUINO_PIN_A1   ARDUINO_PIN_55
 
#define ARDUINO_PIN_A2   ARDUINO_PIN_56
 
#define ARDUINO_PIN_A3   ARDUINO_PIN_57
 
#define ARDUINO_PIN_A4   ARDUINO_PIN_58
 
#define ARDUINO_PIN_A5   ARDUINO_PIN_59
 

Mapping of Arduino analog pins to RIOT ADC lines

#define ARDUINO_A0   ADC_LINE(1)
 
#define ARDUINO_A1   ADC_LINE(2)
 
#define ARDUINO_A2   ADC_LINE(4)
 
#define ARDUINO_A3   ADC_LINE(5)
 
#define ARDUINO_A4   ADC_LINE(6)
 
#define ARDUINO_A5   ADC_LINE(7)
 
#define ARDUINO_ANALOG_PIN_LAST   5
 

Macro Definition Documentation

◆ ARDUINO_A0

#define ARDUINO_A0   ADC_LINE(1)

Definition at line 172 of file arduino_iomap.h.

◆ ARDUINO_A1

#define ARDUINO_A1   ADC_LINE(2)

Definition at line 173 of file arduino_iomap.h.

◆ ARDUINO_A2

#define ARDUINO_A2   ADC_LINE(4)

Definition at line 174 of file arduino_iomap.h.

◆ ARDUINO_A3

#define ARDUINO_A3   ADC_LINE(5)

Definition at line 175 of file arduino_iomap.h.

◆ ARDUINO_A4

#define ARDUINO_A4   ADC_LINE(6)

Definition at line 176 of file arduino_iomap.h.

◆ ARDUINO_A5

#define ARDUINO_A5   ADC_LINE(7)

Definition at line 177 of file arduino_iomap.h.

◆ ARDUINO_ANALOG_PIN_LAST

#define ARDUINO_ANALOG_PIN_LAST   5

Definition at line 179 of file arduino_iomap.h.

◆ ARDUINO_I2C_UNO

#define ARDUINO_I2C_UNO   I2C_DEV(0)

The first I2C bus is where shields for the Arduino UNO/Mega expect it.

Definition at line 60 of file arduino_iomap.h.

◆ ARDUINO_LED

#define ARDUINO_LED   (24)

Definition at line 67 of file arduino_iomap.h.

◆ ARDUINO_PIN_0

#define ARDUINO_PIN_0   GPIO_PIN(1, 1)

Definition at line 75 of file arduino_iomap.h.

◆ ARDUINO_PIN_1

#define ARDUINO_PIN_1   GPIO_PIN(1, 2)

Definition at line 76 of file arduino_iomap.h.

◆ ARDUINO_PIN_10

#define ARDUINO_PIN_10   GPIO_PIN(1, 12)

Definition at line 87 of file arduino_iomap.h.

◆ ARDUINO_PIN_11

#define ARDUINO_PIN_11   GPIO_PIN(1, 13)

Definition at line 88 of file arduino_iomap.h.

◆ ARDUINO_PIN_12

#define ARDUINO_PIN_12   GPIO_PIN(1, 14)

Definition at line 89 of file arduino_iomap.h.

◆ ARDUINO_PIN_13

#define ARDUINO_PIN_13   GPIO_PIN(1, 15)

Definition at line 90 of file arduino_iomap.h.

◆ ARDUINO_PIN_14

#define ARDUINO_PIN_14   GPIO_PIN(0, 10)

Definition at line 96 of file arduino_iomap.h.

◆ ARDUINO_PIN_15

#define ARDUINO_PIN_15   GPIO_PIN(0, 9)

Definition at line 97 of file arduino_iomap.h.

◆ ARDUINO_PIN_16

#define ARDUINO_PIN_16   GPIO_PIN(0, 8)

Definition at line 98 of file arduino_iomap.h.

◆ ARDUINO_PIN_17

#define ARDUINO_PIN_17   GPIO_PIN(0, 7)

Definition at line 99 of file arduino_iomap.h.

◆ ARDUINO_PIN_18

#define ARDUINO_PIN_18   GPIO_PIN(0, 6)

Definition at line 100 of file arduino_iomap.h.

◆ ARDUINO_PIN_19

#define ARDUINO_PIN_19   GPIO_PIN(0, 5)

Definition at line 101 of file arduino_iomap.h.

◆ ARDUINO_PIN_2

#define ARDUINO_PIN_2   GPIO_PIN(1, 3)

Definition at line 77 of file arduino_iomap.h.

◆ ARDUINO_PIN_20

#define ARDUINO_PIN_20   GPIO_PIN(0, 1)

Definition at line 102 of file arduino_iomap.h.

◆ ARDUINO_PIN_21

#define ARDUINO_PIN_21   GPIO_PIN(0, 0)

Definition at line 103 of file arduino_iomap.h.

◆ ARDUINO_PIN_22

#define ARDUINO_PIN_22   GPIO_PIN(0, 11)

Definition at line 110 of file arduino_iomap.h.

◆ ARDUINO_PIN_23

#define ARDUINO_PIN_23   GPIO_PIN(0, 12)

Definition at line 111 of file arduino_iomap.h.

◆ ARDUINO_PIN_24

#define ARDUINO_PIN_24   GPIO_PIN(0, 13)

Definition at line 112 of file arduino_iomap.h.

◆ ARDUINO_PIN_25

#define ARDUINO_PIN_25   GPIO_PIN(0, 14)

Definition at line 113 of file arduino_iomap.h.

◆ ARDUINO_PIN_26

#define ARDUINO_PIN_26   GPIO_PIN(0, 15)

Definition at line 114 of file arduino_iomap.h.

◆ ARDUINO_PIN_27

#define ARDUINO_PIN_27   GPIO_PIN(0, 16)

Definition at line 115 of file arduino_iomap.h.

◆ ARDUINO_PIN_28

#define ARDUINO_PIN_28   GPIO_PIN(0, 17)

Definition at line 116 of file arduino_iomap.h.

◆ ARDUINO_PIN_29

#define ARDUINO_PIN_29   GPIO_PIN(0, 18)

Definition at line 117 of file arduino_iomap.h.

◆ ARDUINO_PIN_3

#define ARDUINO_PIN_3   GPIO_PIN(1, 4)

Definition at line 78 of file arduino_iomap.h.

◆ ARDUINO_PIN_30

#define ARDUINO_PIN_30   GPIO_PIN(0, 19)

Definition at line 118 of file arduino_iomap.h.

◆ ARDUINO_PIN_31

#define ARDUINO_PIN_31   GPIO_PIN(0, 20)

Definition at line 119 of file arduino_iomap.h.

◆ ARDUINO_PIN_32

#define ARDUINO_PIN_32   GPIO_PIN(0, 21)

Definition at line 120 of file arduino_iomap.h.

◆ ARDUINO_PIN_33

#define ARDUINO_PIN_33   GPIO_PIN(0, 22)

Definition at line 121 of file arduino_iomap.h.

◆ ARDUINO_PIN_34

#define ARDUINO_PIN_34   GPIO_PIN(0, 23)

Definition at line 122 of file arduino_iomap.h.

◆ ARDUINO_PIN_35

#define ARDUINO_PIN_35   GPIO_PIN(0, 24)

Definition at line 123 of file arduino_iomap.h.

◆ ARDUINO_PIN_36

#define ARDUINO_PIN_36   GPIO_PIN(0, 25)

Definition at line 124 of file arduino_iomap.h.

◆ ARDUINO_PIN_37

#define ARDUINO_PIN_37   GPIO_PIN(1, 0)

Definition at line 125 of file arduino_iomap.h.

◆ ARDUINO_PIN_38

#define ARDUINO_PIN_38   GPIO_PIN(1, 9)

Definition at line 126 of file arduino_iomap.h.

◆ ARDUINO_PIN_4

#define ARDUINO_PIN_4   GPIO_PIN(1, 5)

Definition at line 79 of file arduino_iomap.h.

◆ ARDUINO_PIN_5

#define ARDUINO_PIN_5   GPIO_PIN(1, 6)

Definition at line 80 of file arduino_iomap.h.

◆ ARDUINO_PIN_54

#define ARDUINO_PIN_54   GPIO_PIN(0, 3)

Definition at line 131 of file arduino_iomap.h.

◆ ARDUINO_PIN_55

#define ARDUINO_PIN_55   GPIO_PIN(0, 4)

Definition at line 132 of file arduino_iomap.h.

◆ ARDUINO_PIN_56

#define ARDUINO_PIN_56   GPIO_PIN(0, 28)

Definition at line 133 of file arduino_iomap.h.

◆ ARDUINO_PIN_57

#define ARDUINO_PIN_57   GPIO_PIN(0, 29)

Definition at line 134 of file arduino_iomap.h.

◆ ARDUINO_PIN_58

#define ARDUINO_PIN_58   GPIO_PIN(0, 30)

Definition at line 135 of file arduino_iomap.h.

◆ ARDUINO_PIN_59

#define ARDUINO_PIN_59   GPIO_PIN(0, 31)

Definition at line 136 of file arduino_iomap.h.

◆ ARDUINO_PIN_6

#define ARDUINO_PIN_6   GPIO_PIN(1, 7)

Definition at line 81 of file arduino_iomap.h.

◆ ARDUINO_PIN_7

#define ARDUINO_PIN_7   GPIO_PIN(1, 8)

Definition at line 82 of file arduino_iomap.h.

◆ ARDUINO_PIN_8

#define ARDUINO_PIN_8   GPIO_PIN(1, 10)

Definition at line 85 of file arduino_iomap.h.

◆ ARDUINO_PIN_9

#define ARDUINO_PIN_9   GPIO_PIN(1, 11)

Definition at line 86 of file arduino_iomap.h.

◆ ARDUINO_PIN_A0

#define ARDUINO_PIN_A0   ARDUINO_PIN_54

Definition at line 147 of file arduino_iomap.h.

◆ ARDUINO_PIN_A1

#define ARDUINO_PIN_A1   ARDUINO_PIN_55

Definition at line 148 of file arduino_iomap.h.

◆ ARDUINO_PIN_A2

#define ARDUINO_PIN_A2   ARDUINO_PIN_56

Definition at line 149 of file arduino_iomap.h.

◆ ARDUINO_PIN_A3

#define ARDUINO_PIN_A3   ARDUINO_PIN_57

Definition at line 150 of file arduino_iomap.h.

◆ ARDUINO_PIN_A4

#define ARDUINO_PIN_A4   ARDUINO_PIN_58

Definition at line 151 of file arduino_iomap.h.

◆ ARDUINO_PIN_A5

#define ARDUINO_PIN_A5   ARDUINO_PIN_59

Definition at line 152 of file arduino_iomap.h.

◆ ARDUINO_PIN_LAST

#define ARDUINO_PIN_LAST   59

Definition at line 140 of file arduino_iomap.h.

◆ ARDUINO_SPI_D11D12D13

#define ARDUINO_SPI_D11D12D13   SPI_DEV(0)

SPI_DEV(1) is connected to D11/D12/D13.

Definition at line 47 of file arduino_iomap.h.

◆ ARDUINO_SPI_ISP

#define ARDUINO_SPI_ISP   SPI_DEV(0)

Definition at line 49 of file arduino_iomap.h.

◆ ARDUINO_UART_D0D1

#define ARDUINO_UART_D0D1   UART_DEV(1)

Definition at line 36 of file arduino_iomap.h.