VextControl.ino 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * HelTec Automation(TM) Vext control example.
  3. *
  4. * Function summary:
  5. *
  6. * - Vext connected to 3.3V via a MOS-FET, the gate pin connected to GPIO21;
  7. *
  8. * - OLED display and PE4259(RF switch) use Vext as power supply;
  9. *
  10. * - WIFI Kit series V1 don't have Vext control function;
  11. *
  12. * HelTec AutoMation, Chengdu, China.
  13. * 成都惠利特自动化科技有限公司
  14. * www.heltec.cn
  15. * support@heltec.cn
  16. *
  17. * this project also release in GitHub:
  18. * https://github.com/Heltec-Aaron-Lee/WiFi_Kit_series
  19. */
  20. #include "Arduino.h"
  21. #include "heltec.h"
  22. void setup()
  23. {
  24. //WIFI Kit series V1 not support Vext control
  25. Heltec.begin(true /*DisplayEnable Enable*/, false /*LoRa Disable*/, true /*Serial Enable*/);
  26. //OLED use Vext power supply, Vext must be turn ON before OLED initialition.
  27. Heltec.display->init();
  28. Heltec.display->flipScreenVertically();
  29. Heltec.display->setFont(ArialMT_Plain_10);
  30. Heltec.display->drawString(0, 0, "Hello, I'm happy today");
  31. Heltec.display->display();
  32. delay(1000);
  33. }
  34. void loop()
  35. {
  36. Heltec.display->sleep();//OLED sleep
  37. Heltec.VextON();
  38. Serial.println("Turn OFF Vext");
  39. delay(5000);
  40. Heltec.VextOFF();
  41. Serial.println("Turn ON Vext");
  42. Heltec.display->wakeup();
  43. delay(5000);
  44. }