You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- /**
- * Defines Arduino pins number connected to external systems.
- */
- #pragma once
-
- #define SIM_RST 5 ///< SIM808 RESET
- #define SIM_RX 6 ///< SIM808 RXD
- #define SIM_TX 7 ///< SIM808 TXD
- #define SIM_PWR 9 ///< SIM808 PWRKEY
- #define SIM_STATUS 8 ///< SIM808 STATUS
-
- #define I2C_PWR A0 ///< Used to drive I2C power supply
- #define SD_SS SS
-
- #define SIM_RI 2 ///< Interrupt pin connected to SIM RI.
- #define RTC_WAKE 3 ///< Interrupt pin connected to DS3231 !INT/SQW
|