BlynkSimpleParticle.h 451 B

123456789101112131415161718192021
  1. /**
  2. * @file BlynkSimpleParticle.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 Mar 2015
  7. * @brief
  8. *
  9. */
  10. #ifndef BlynkSimpleParticle_h
  11. #define BlynkSimpleParticle_h
  12. #include "BlynkParticle.h"
  13. static BlynkTransportParticle _blynkTransport;
  14. BlynkParticle Blynk(_blynkTransport);
  15. #include "BlynkWidgets.h"
  16. #endif