BlynkSimpleEthernetV2_0.h 632 B

123456789101112131415161718192021222324252627
  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 BlynkSimpleEthernetV2_0_h
  11. #define BlynkSimpleEthernetV2_0_h
  12. #ifndef BLYNK_INFO_CONNECTION
  13. #define BLYNK_INFO_CONNECTION "W5200"
  14. #endif
  15. #include <EthernetV2_0.h>
  16. #include <Adapters/BlynkEthernet.h>
  17. static EthernetClient _blynkEthernetClient;
  18. static BlynkArduinoClient _blynkTransport(_blynkEthernetClient);
  19. BlynkEthernet Blynk(_blynkTransport);
  20. #include <BlynkWidgets.h>
  21. #endif