Search found 3 matches

by troyduncan
Tue May 24, 2022 12:26 am
Forum: ESP32 Arduino
Topic: Arduino-ESP32 - Installing using PlatformIO
Replies: 1
Views: 1771

Re: Arduino-ESP32 - Installing using PlatformIO

First create a regular ESP32 project, then edit the platform.ini file by adding the following lines : [env:esp32s3] platform = https://github.com/tasmota/platform-espressif32/releases/download/v2.0.2.3/platform-espressif32-2.0.2.3.zip board = esp32-s3-devkitc-1 framework = arduino monitor_speed = 11...
by troyduncan
Fri Jan 14, 2022 8:39 pm
Forum: ESP32 Arduino
Topic: ESP32-S3 Support
Replies: 2
Views: 5132

ESP32-S3 Support

Considering the additional capabilities of the S3 and the fact that it has been available for a year now, I am somewhat surprise that there is still no Arduino support. Does anyone know when we will have support for this variant in Arduino ?
by troyduncan
Sat Dec 04, 2021 1:02 am
Forum: General Discussion
Topic: project main file cannot find the component header file ESP32 ESP-IDF VSCode
Replies: 2
Views: 7007

Re: project main file cannot find the component header file ESP32 ESP-IDF VSCode

In - main/ - CMakeLists.txt you should have something like the following : idf_component_register(SRCS "main.c" INCLUDE_DIRS "." PRIV_REQUIRES my_component) or set(includedirs ../components/my_component/include/ "." # this line is probably not needed since main dir is included by default and there a...