get-started-devkitc.rst 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. ESP32-DevKitC Getting Started Guide
  2. ===================================
  3. This user guide shows how to get started with ESP32-DevKitC development board.
  4. What You Need
  5. -------------
  6. * 1 × :ref:`ESP32-DevKitC board <get-started-esp32-devkitc-board-front>`
  7. * 1 × USB A / micro USB B cable
  8. * 1 × PC loaded with Windows, Linux or Mac OS
  9. Overview
  10. --------
  11. ESP32-DevKitC is a small-sized ESP32-based development board produced by `Espressif <https://espressif.com>`_. Most of the I/O pins are broken out to the pin headers on both sides for easy interfacing. Developers can connect these pins to peripherals as needed. Standard headers also make development easy and convenient when using a breadboard.
  12. Functional Description
  13. ----------------------
  14. The following list and figure below describe key components, interfaces and controls of ESP32-DevKitC board.
  15. ESP-WROOM-32
  16. Standard `ESP-WROOM-32 <https://www.espressif.com/sites/default/files/documentation/esp-wroom-32_datasheet_en.pdf>`_ module soldered to the ESP32-DevKitC board.
  17. EN
  18. Reset button: pressing this button resets the system.
  19. Boot
  20. Download button: holding down the **Boot** button and pressing the **EN** button initiates the firmware download mode. Then user can download firmware through the serial port.
  21. USB
  22. USB interface. It functions as the power supply for the board and the communication interface between PC and ESP-WROOM-32.
  23. I/O
  24. Most of the pins on the ESP-WROOM-32 are broken out to the pin headers on the board. Users can program ESP32 to enable multiple functions such as PWM,ADC, DAC, I2C, I2S, SPI, etc.
  25. .. _get-started-esp32-devkitc-board-front:
  26. .. figure:: ../_static/esp32-devkitc-functional-overview.png
  27. :align: center
  28. :alt: ESP32-DevKitC board layout
  29. :figclass: align-center
  30. ESP32-DevKitC board layout
  31. Power Supply Options
  32. --------------------
  33. There following options are available to provide power supply to the ESP32-PICO-KIT V4:
  34. 1. Micro USB port, this is default power supply connection
  35. 2. 5V / GND header pins
  36. 3. 3V3 / GND header pins
  37. .. warning::
  38. Above options are mutually exclusive, i.e. the power supply may be provided using only one of the above options. Attempt to power the board using more than one connection at a time may damage the board and/or the power supply source.
  39. Start Application Development
  40. ------------------------------
  41. Before powering up the ESP32-DevKitC, please make sure that the board has been received in good condition with no obvious signs of damage.
  42. To start development of applications, proceed to section :doc:`index`, that will walk you through the following steps:
  43. * :ref:`get-started-setup-toolchain` in your PC to develop applications for ESP32 in C language
  44. * :ref:`get-started-connect` the module to the PC and verify if it is accessible
  45. * :ref:`get-started-build-flash` an example application to the ESP32
  46. * :ref:`get-started-build-monitor` instantly what the application is doing
  47. Related Documents
  48. -----------------
  49. * `ESP32-DevKitC schematic <https://dl.espressif.com/dl/schematics/ESP32-Core-Board-V2_sch.pdf>`_ (PDF)
  50. * `ESP32 Datasheet <https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf>`_ (PDF)
  51. * `ESP-WROOM-32 Datasheet <https://espressif.com/sites/default/files/documentation/esp-wroom-32_datasheet_en.pdf>`_ (PDF)