get-started-pico-kit.rst 4.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. ESP32-PICO-KIT V4 Getting Started Guide
  2. =======================================
  3. This user guide shows how to get started with the ESP32-PICO-KIT V4 mini development board. For description of other versions of the ESP32-PICO-KIT check :doc:`../hw-reference/index`.
  4. What You Need
  5. -------------
  6. * 1 × :ref:`ESP32-PICO-KIT V4 mini development board <get-started-pico-kit-v4-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-PICO-KIT V4 is a mini development board based on the ESP32-PICO-D4 SIP module produced by `Espressif <https://espressif.com>`_. For easy interfacing, all the IO signals and system power on ESP32-PICO-D4 are led out through two 20 x 0.1" pitch header pads on both sides of the development board. To make the ESP32-PICO-KIT V4 fit into mini breadboards, the header pads are populated with two 17 pin headers. Remaining 2 x 3 pads grouped on one side of the board besides the antenna are not populated. If required, the additional 2 x 3 pin headers may be soldered later by the user. The development board integrates a USB-UART Bridge circuit, allowing the developers to connect the board to a PC's USB port for downloads and debugging.
  12. .. note::
  13. The 2 x 3 pads not populated with pin headers are internally connected to the flash memory embedded in the ESP32-PICO-D4 SIP module. For more details see module's datasheet in :ref:`get-started-pico-kit-v4-related-documents`.
  14. Functional Description
  15. ----------------------
  16. The following list and figure below describe key components, interfaces and controls of ESP32-PICO-KIT V4 board.
  17. ESP32-PICO-D4
  18. Standard ESP32-PICO-D4 module soldered to the ESP32-PICO-KIT V4 board. The complete system of the ESP32 chip has been integrated into the SIP module, requiring only external antenna with LC matching network, decoupling capacitors and pull-up resistors for EN signals to function properly.
  19. USB-UART Bridge
  20. A single chip USB-UART bridge provides up to 1 Mbps transfers rates.
  21. I/O
  22. All the pins on ESP32-PICO-D4 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.
  23. Micro USB Port
  24. USB interface. It functions as the power supply for the board and the communication interface between PC and ESP32-PICO-KIT V4.
  25. EN Button
  26. Reset button; pressing this button resets the system.
  27. BOOT Button
  28. Holding down the Boot button and pressing the EN button initiates the firmware download mode. Then user can download firmware through the serial port.
  29. .. _get-started-pico-kit-v4-board-front:
  30. .. figure:: ../_static/esp32-pico-kit-v4-layout.jpg
  31. :align: center
  32. :alt: ESP32-PICO-KIT V4 board layout
  33. :figclass: align-center
  34. ESP32-PICO-KIT V4 board layout
  35. Power Supply Options
  36. --------------------
  37. There following options are available to provide power supply to the ESP32-PICO-KIT V4:
  38. 1. Micro USB port, this is default power supply connection
  39. 2. 5V / GND header pins
  40. 3. 3V3 / GND header pins
  41. .. warning::
  42. 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.
  43. Start Application Development
  44. ------------------------------
  45. Before powering up the ESP32-PICO-KIT V4, please make sure that the board has been received in good condition with no obvious signs of damage.
  46. To start development of applications, proceed to section :doc:`index`, that will walk you through the following steps:
  47. * :ref:`get-started-setup-toolchain` in your PC to develop applications for ESP32 in C language
  48. * :ref:`get-started-connect` the module to the PC and verify if it is accessible
  49. * :ref:`get-started-build-flash` an example application to the ESP32
  50. * :ref:`get-started-build-monitor` instantly what the application is doing
  51. .. _get-started-pico-kit-v4-related-documents:
  52. Related Documents
  53. -----------------
  54. * `ESP32-PICO-KIT V4 schematic <https://dl.espressif.com/dl/schematics/esp32-pico-kit-v4_schematic.pdf>`_ (PDF)
  55. * `ESP32-PICO-D4 Datasheet <http://espressif.com/sites/default/files/documentation/esp32-pico-d4_datasheet_en.pdf>`_ (PDF)
  56. * :doc:`../hw-reference/index`
  57. .. * `ESP32-PICO-KIT Datasheet <http://espressif.com/sites/default/files/documentation/esp32-pico-kit_datasheet_en.pdf>`_ (PDF)
  58. .. toctree::
  59. :hidden:
  60. get-started-pico-kit-v3