ESP IDF Robot

This commit is contained in:
2024-12-22 11:03:37 -05:00
parent 2ac1d54a63
commit 5ab5d6cc8f
7 changed files with 466 additions and 459 deletions

View File

@@ -1 +1 @@
fa6bb4ff2ca755c6fc4a2480befb3cf6 /home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot/build/ESP-IDF_Robot.bin
d9dff126ba54463ff2cfb4cd2de8a915 /home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot/build/ESP-IDF_Robot.bin

View File

@@ -951,3 +951,10 @@
385 471 1734883383355918613 /home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 608485c817a7b49c
293 558 1734883383181928847 esp-idf/main/CMakeFiles/__idf_main.dir/blink_example_main.c.obj 4dd51763bd3cdffe
558 612 1734883383447913202 esp-idf/main/libmain.a e31ee7c6d085bb4e
612 13405 1734883396213170894 esp-idf/esp_system/ld/sections.ld fac8ddf2708b76fe
612 13405 1734883396213170894 /home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esp_system/ld/sections.ld fac8ddf2708b76fe
13406 13961 1734883396295166183 ESP-IDF_Robot.elf 7db8bbdc5ef5141f
13961 14311 1734883397197114385 .bin_timestamp 15712c9999fc04aa
13961 14311 1734883397197114385 /home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot/build/.bin_timestamp 15712c9999fc04aa
14311 14416 1734883397200114213 esp-idf/esptool_py/CMakeFiles/app_check_size 1b7369a06a6f9d53
14311 14416 1734883397200114213 /home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1b7369a06a6f9d53

File diff suppressed because it is too large Load Diff

View File

@@ -29,7 +29,7 @@ static const char *TAG = "ESP IDF Robot";
#define LEDC_CHANNEL LEDC_CHANNEL_0
#define LEDC_DUTY_RES LEDC_TIMER_10_BIT // Set duty resolution to 13 bits
#define LEDC_DUTY (1024) // Set duty to 50%. (2 ** 13) * 50% = 4096 1024
#define LEDC_FREQUENCY (5000) // For LED the freuqncy of 500Hz seemed to be sufficient. // Frequency in Hertz. Set frequency at 4 kHz
#define LEDC_FREQUENCY (500) // For LED the freuqncy of 500Hz seemed to be sufficient. // Frequency in Hertz. Set frequency at 4 kHz
/* Use project configuration menu (idf.py menuconfig) to choose the GPIO to blink,
or you can edit the following line and set a number here.