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.

26 lines
700 B

  1. /**
  2. * @file TinyGsmClient.h
  3. * @author Volodymyr Shymanskyy
  4. * @license LGPL-3.0
  5. * @copyright Copyright (c) 2016 Volodymyr Shymanskyy
  6. * @date Nov 2016
  7. */
  8. #ifndef TinyGsmClient_h
  9. #define TinyGsmClient_h
  10. #if defined(TINY_GSM_MODEM_SIM800) || defined(TINY_GSM_MODEM_SIM900)
  11. #include <TinyGsmClientSIM800.h>
  12. #elif defined(TINY_GSM_MODEM_A6) || defined(TINY_GSM_MODEM_A7)
  13. #include <TinyGsmClientA6.h>
  14. #elif defined(TINY_GSM_MODEM_M590)
  15. #include <TinyGsmClientM590.h>
  16. #elif defined(TINY_GSM_MODEM_ESP8266)
  17. #include <TinyGsmClientESP8266.h>
  18. #elif defined(TINY_GSM_MODEM_XBEE)
  19. #include <TinyGsmClientXBee.h>
  20. #else
  21. #error "Please define GSM modem model"
  22. #endif
  23. #endif