Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
PinAssignment.h
- Committer:
- khaiminhvn
- Date:
- 2021-03-10
- Revision:
- 1:f058cf4e422a
- Parent:
- 0:0c5c2cbf330a
- Child:
- 2:014cf2a98712
File content as of revision 1:f058cf4e422a:
#ifndef PINASSIGNMENT_H #define PINASSIGNMENT_H //Anemometers #define PIN_ANEMOMETER A0 //Accelerometers #define PIN_ACCEL_PANEL D0 #define PIN_ACCEL_R1 D1 #define PIN_ACCEL_R2 D2 //Buttons #define PIN_BTFN D4 //FN Button #define PIN_BTINC D3 //INC Button #define PIN_BTDEC D5 //DEC Button //Motor Driver #define PIN_ENA D6 #define PIN_ENB D7 #define PIN_INTP D8 //Tie INT1 and INT3 #define PIN_INTN D9 //Tie INT2 and INT4 //I2C #define PIN_SDA PTE24 #define PIN_SCL PTE25 #endif