BlynkSimpleTI_TivaC_Connected.h 747 B

1234567891011121314151617181920212223242526272829303132
  1. /**
  2. * @file BlynkSimpleEthernet.h
  3. * @author Volodymyr Shymanskyy
  4. * @license This project is released under the MIT License (MIT)
  5. * @copyright Copyright (c) 2015 Volodymyr Shymanskyy
  6. * @date Jan 2015
  7. * @brief
  8. *
  9. */
  10. #ifndef BlynkSimpleTivaC_Connected_h
  11. #define BlynkSimpleTivaC_Connected_h
  12. #ifndef BLYNK_INFO_DEVICE
  13. #define BLYNK_INFO_DEVICE "TI Tiva C Connected"
  14. #endif
  15. #ifndef BLYNK_INFO_CONNECTION
  16. #define BLYNK_INFO_CONNECTION "TM4C12x"
  17. #endif
  18. #include <Ethernet.h>
  19. #include <EthernetClient.h>
  20. #include <Adapters/BlynkEthernet.h>
  21. static EthernetClient _blynkEthernetClient;
  22. static BlynkArduinoClient _blynkTransport(_blynkEthernetClient);
  23. BlynkEthernet Blynk(_blynkTransport);
  24. #include <BlynkWidgets.h>
  25. #endif