diff options
author | Stanley Huang <stanleyhuangyc@gmail.com> | 2015-05-24 23:56:09 +1000 |
---|---|---|
committer | Stanley Huang <stanleyhuangyc@gmail.com> | 2015-05-24 23:56:09 +1000 |
commit | 4bf83215c5ac51982a2cfefde5d552777d5a5af3 (patch) | |
tree | a63bf8f7fe17d95009bf2ca336062b0bd0eed07e | |
parent | 71afc62c35b4d46d949308cf6a62033eb01a3b00 (diff) | |
download | 2021-arduino-obd-4bf83215c5ac51982a2cfefde5d552777d5a5af3.tar.gz 2021-arduino-obd-4bf83215c5ac51982a2cfefde5d552777d5a5af3.tar.bz2 2021-arduino-obd-4bf83215c5ac51982a2cfefde5d552777d5a5af3.zip |
Update SIM800.h
-rw-r--r-- | libraries/SIM800/SIM800.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libraries/SIM800/SIM800.h b/libraries/SIM800/SIM800.h index ca3104f..9751302 100644 --- a/libraries/SIM800/SIM800.h +++ b/libraries/SIM800/SIM800.h @@ -1,5 +1,5 @@ /************************************************************************* -* Test sketch for SIM800 library +* SIM800 GPRS/HTTP Library * Distributed under GPL v2.0 * Written by Stanley Huang <stanleyhuangyc@gmail.com> * For more information, please visit http://arduinodev.com @@ -7,9 +7,16 @@ #include <Arduino.h> +// change this to the pin connect with SIM800 reset pin #define SIM800_RESET_PIN 7 + +// change this to the serial UART which SIM800 is attached to #define simser Serial1 + +// change this to the serial UART used for console #define con Serial + +// change this to 1 to enable debug information output #define DEBUG 0 typedef enum { |