|
|
преди 5 години | |
|---|---|---|
| .. | ||
| main | преди 6 години | |
| CMakeLists.txt | преди 7 години | |
| Makefile | преди 9 години | |
| README.md | преди 5 години | |
(See the README.md file in the upper level 'examples' directory for more information about examples.)
This example shows how to control intensity of LEDs using ESP32's on-board hardware LED PWM Controller module.
Connect four LEDs to the following LEDC channels / individual GPIOs:
| ledc channel | GPIO |
|---|---|
| channel 0 | GPIO18 |
| channel 1 | GPIO19 |
| channel 2 | GPIO4 |
| channel 3 | GPIO5 |
idf.py menuconfig
Build the project and flash it to the board, then run monitor tool to view serial output:
idf.py -p PORT flash monitor
(To exit the serial monitor, type Ctrl-].)
See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects.
Running this example, you will see each ledc's brightness changes differently
you can also see the following output log on the serial monitor:
1. LEDC fade up to duty = 4000
2. LEDC fade down to duty = 0
3. LEDC set duty = 4000 without fade
4. LEDC set duty = 0 without fade
...
Programming fail
idf.py -p PORT monitor, and reboot your board to see if there are any output logs.menuconfig menu, and try again.For any technical queries, please open an issue on GitHub. We will get back to you soon.