vscode-esp-idf-extension VS arduino-esp32

Compare vscode-esp-idf-extension vs arduino-esp32 and see what are their differences.

vscode-esp-idf-extension

Visual Studio Code extension for ESP-IDF projects (by espressif)
SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
vscode-esp-idf-extension arduino-esp32
10 228
965 12,706
3.2% 2.9%
8.4 9.6
1 day ago about 12 hours ago
TypeScript C++
Apache License 2.0 GNU Lesser General Public License v3.0 only
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

vscode-esp-idf-extension

Posts with mentions or reviews of vscode-esp-idf-extension. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-01.
  • Why Did These LEDs Light Up? ESP32-S3 – Which Pins Are Safe to Use? [video]
    3 projects | news.ycombinator.com | 1 Dec 2023
    ESP-IDF devcontainer + vscode and the ESP-IDF plugin? Maybe it's worth me seeing if work will let me publish our docs around it, but it was pretty much as simple as following the ESP-IDF plugin's own documentation:

    https://github.com/espressif/vscode-esp-idf-extension/blob/m...

  • ESP-IDF cant find header files
    1 project | /r/embedded | 24 Aug 2023
    See this: https://github.com/espressif/vscode-esp-idf-extension/blob/master/docs/C_CPP_CONFIGURATION.md
  • Error including "freertos/FreeRTOS.h" header in in esp-idf using vscode
    1 project | /r/embedded | 18 May 2023
    your c/cpp extention is not configured properly, there is even explanation how to do it in extension docs https://github.com/espressif/vscode-esp-idf-extension/blob/master/docs/C_CPP_CONFIGURATION.md
  • Project ideas to learn TCP/IP
    3 projects | /r/embedded | 21 Mar 2023
    I recommend getting yourself an ESP32 devkit (either ESP32-DevKitC or ESP32-S3-DevKitC-1 variants), grab https://github.com/espressif/esp-idf SDK, and trying out both WiFi and BSD Sockets usage examples using VSCode + Espressif IDF or PlatformIO plugin. Hopefully you already have an existing WiFi network at home to use it with. Avoid Arduino, MicroPython, and such dumbed-down framework anything and stick with just using ESP-IDF provided APIs directly.
  • Please Help — Headers not found
    2 projects | /r/esp32 | 12 Mar 2023
  • Arduino vs esp-idf
    3 projects | /r/esp32 | 5 Jan 2023
    good docu/tutorial scroll down to readme here: https://github.com/espressif/vscode-esp-idf-extension
  • ESP-IDF Vscode
    1 project | /r/esp32 | 2 Dec 2022
    I did a fresh install of ubuntu, then followed the setup guide at: https://github.com/espressif/vscode-esp-idf-extension/blob/master/docs/tutorial/install.md
  • Installing IDF in VS-Code
    1 project | /r/esp32 | 27 Nov 2022
    Not sure what tutorial you are following but I used this one on github (https://github.com/espressif/vscode-esp-idf-extension/blob/master/docs/tutorial/install.md) and didn’t have any issues, I appreciate that doesn’t help you if it’s the one you’re following.
  • how and where to learn programming ESP32 in C?
    3 projects | /r/esp32 | 2 Aug 2021
    Install VS Code ESP-IDF Extension GitHub Page with documentation 10 minute YouTube Video Introduction by Espressif
  • VSCode/CLion + ESP-IDF... for dummies?
    2 projects | /r/esp32 | 5 Jul 2021

arduino-esp32

Posts with mentions or reviews of arduino-esp32. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-07.
  • Any good/worthwhile Camera sensor modules for arduino/pico for still photography?
    1 project | /r/diyelectronics | 11 Dec 2023
    You could just buy ready-made ESP32 boards with an OV2640 camera built-in, then customize the example sketch from https://github.com/espressif/arduino-esp32/tree/master/libraries/ESP32/examples/Camera/CameraWebServer to your liking.
  • I am trying to write to an SD card, it "works" but I can only find the file on PC if I use data recovery software?
    1 project | /r/esp32 | 9 Dec 2023
  • ESP32 memory corruption
    2 projects | /r/esp32 | 7 Dec 2023
    Are you perhaps this poster? https://github.com/espressif/arduino-esp32/issues/5250 - asking that poster for the list I just asked for went nowhere and it was auto-closed.
  • ESP32 WiFiMulti: Connect to the Strongest Wi-Fi Network (from a listing of networks).
    2 projects | /r/u_KeatonParker | 1 Oct 2023
    /* * Based on the following examples: * WiFi > WiFiMulti: https://github.com/espressif/arduino-esp32/blob/master/libraries/WiFi/examples/WiFiMulti/WiFiMulti.ino * WiFi > WiFiScan: https://github.com/espressif/arduino-esp32/blob/master/libraries/WiFi/examples/WiFiScan/WiFiScan.ino * Complete project details at our blog: https://RandomNerdTutorials.com/ * */ #include #include WiFiMulti wifiMulti; // WiFi connect timeout per AP. Increase when connecting takes longer. const uint32_t connectTimeoutMs = 10000; void setup(){ Serial.begin(115200); delay(10); WiFi.mode(WIFI_STA); // Add list of wifi networks wifiMulti.addAP("ssid_from_AP_1", "your_password_for_AP_1"); wifiMulti.addAP("ssid_from_AP_2", "your_password_for_AP_2"); wifiMulti.addAP("ssid_from_AP_3", "your_password_for_AP_3"); // WiFi.scanNetworks will return the number of networks found int n = WiFi.scanNetworks(); Serial.println("scan done"); if (n == 0) { Serial.println("no networks found"); } else { Serial.print(n); Serial.println(" networks found"); for (int i = 0; i < n; ++i) { // Print SSID and RSSI for each network found Serial.print(i + 1); Serial.print(": "); Serial.print(WiFi.SSID(i)); Serial.print(" ("); Serial.print(WiFi.RSSI(i)); Serial.print(")"); Serial.println((WiFi.encryptionType(i) == WIFI_AUTH_OPEN)?" ":"*"); delay(10); } } // Connect to Wi-Fi using wifiMulti (connects to the SSID with strongest connection) Serial.println("Connecting Wifi..."); if(wifiMulti.run() == WL_CONNECTED) { Serial.println(""); Serial.println("WiFi connected"); Serial.println("IP address: "); Serial.println(WiFi.localIP()); } } void loop(){ //if the connection to the stongest hotstop is lost, it will connect to the next network on the list if (wifiMulti.run(connectTimeoutMs) == WL_CONNECTED) { Serial.print("WiFi connected: "); Serial.print(WiFi.SSID()); Serial.print(" "); Serial.println(WiFi.RSSI()); } else { Serial.println("WiFi not connected!"); } delay(1000); }
  • problems connecting esp32 to sd card
    1 project | /r/esp32 | 29 Sep 2023
  • ESP32 S2 Help
    1 project | /r/arduino | 1 Aug 2023
    I have 2 ESP32-S2-Saolo-1 's on hand. I am trying to do the example Wifi FTM code that can be found at the following repo: https://github.com/espressif/arduino-esp32/tree/master/libraries/WiFi/examples/FTM
  • The Nano ESP32
    5 projects | news.ycombinator.com | 17 Jul 2023
    That has not been my experience at all as a user. ESPHome is even easier than Arduino and I haven’t touched firmware code in years.

    The price makes a huge difference when you have dozens of them operating which is trivial with a decent hydroponics and smarthome setup. I also have a dozen boards just sitting idle ready to be called up to replace a failed one or use for a new project because they’re so cheap.

    Not to mention the Arduino core is supported officially by ESP32: https://github.com/espressif/arduino-esp32

    Who actually uses Arduino in production? Everyone just uses modules (for ESP32) or rolls their own using the Arduino board as a reference.

  • Arduino Uno R4 WiFi
    5 projects | news.ycombinator.com | 26 Jun 2023
    They've done a good job of hiding the RTOS from you and making most sketches run fine without porting, but you're still running as a task under the RTOS, yielding between loop() calls[1]. This leads to mysterious timing issues if you aren't aware of it[2]

    It doesn't appear that the Arduino core for the Renesas chip is using the RTOS, at least by default -- its main loop is literally doing while (1) { loop(); }, similar to how the AVR core works. [3, 4]

      1. https://github.com/espressif/arduino-esp32/blob/72c41d09538663ebef80d29eb986cd5bc3395c2d/cores/esp32/main.cpp#L45
  • exit status 1 error not going away! Pls help
    2 projects | /r/arduino | 21 Jun 2023
    https://github.com/lewisxhe/esp32-camera-series/issues/11 may interest you - you need all the files in the same dir, not just the .ino by itself
  • Do you have any idea why this program would not work? [ESP32]
    2 projects | /r/arduino | 19 Jun 2023
    I copied all the libraries from here: https://github.com/espressif/arduino-esp32/tree/master/libraries