platform-espressif32
arduino-esp32
platform-espressif32 | arduino-esp32 | |
---|---|---|
14 | 229 | |
889 | 13,297 | |
2.2% | 1.9% | |
8.5 | 9.7 | |
8 days ago | 2 days ago | |
Python | C++ | |
Apache License 2.0 | GNU Lesser General Public License v3.0 only |
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.
platform-espressif32
-
I like the RP2040
It seems like Espressif are in the same situation as Pi w/r/t PlatformIO[1]. As an outsider, it sounds like PlatformIO was trying to extract a very large annual payment from RPi and Espressif, and that was after the initial support was added in, and some of the community started adopting it.
It's a weird situation, but I think PlatformIO built up a dominant position by supporting all these platforms and accepting community contributions to do so, then tried extracting value from the manufacturers directly after the fact, blocking further community PRs that would add new board revisions or fix bugs. See related: [2]
[1] https://github.com/platformio/platform-espressif32/issues/12...
[2] https://github.com/platformio/platform-raspberrypi/pull/36
-
Is there a way to communicate with uart_write_bytes and read_bytes with s3s native USB
[env:esp32-s3] platform = espressif32 ;https://github.com/platformio/platform-espressif32.git board = esp32-s3-devkitc-1 framework = arduino monitor_speed = 115200 lib_deps = ${common.lib_deps} build_flags = -D MONITOR_SPEED=115200 -D ARDUINO_USB_MODE=1 -D ARDUINO_USB_CDC_ON_BOOT=1 board_build.flash_mode = qio
-
No serial output on ESP32S3N16R8V custom board when using platform io.
[env:esp32-s3-devkitc-1-n16r8v] platform = https://github.com/platformio/platform-espressif32.git framework = arduino board = esp32-s3-devkitc-1-n16r8v board_build.filesystem = littlefs lib_extra_dirs = ~/Documents/Arduino/libraries build_unflags = -std=gnu++11 -fconcepts build_flags = -std=gnu++17 -fconcepts -DBOARD_HAS_PSRAM -mfix-esp32-psram-cache-issue monitor_speed = 115200 monitor_rts = 0 monitor_dtr = 0 monitor_filters = default time colorize esp32_exception_decoder
-
How to setup platform up for this flashing board?
If you want, you can also copy the board definition file https://github.com/platformio/platform-espressif32/blob/develop/boards/esp32-s3-devkitc-1.json and create a custom one in your own repo (if it differs much from the esp32-s3-devkitc-1).
-
Can't import IDF headers for I2S. Please help me work out what I'm doing wrong?
On the "Platforms" tab of the quick access toolbar, I can click on "platforms" (again) and see that I have version 6.0.1 of the Espressif 32 platform instaled. If I look at the release info, it seems that support for IDF v5.0 was added in Espressif 32 version 6.0.0.
-
New T-Display S3 ESP32S3 review
board: esp32-s3-devkitc-1 #https://registry.platformio.org/platforms/platformio/espressif32/boards
-
Does anyone have experience moving from PlatformIO/arduino to the native API?
This is probably the simplest next step before fully transitioning to ESP-IDF and dumping PlatformIO. Here's the PlatformIO example repo that does just this. https://github.com/platformio/platform-espressif32/tree/develop/examples/espidf-arduino-blink
-
Novel errors on boot, SPIFFS not working. All this is new
Sounds like this might be a similar issue to this problem I ran into with the S3 and Platform.io?
-
ESP32C3 support
esphome: name: myesp32c3 esp32: board: esp32-c3-devkitm-1 variant: esp32c3 framework: ### Arduino type: arduino version: dev platform_version: https://github.com/platformio/platform-espressif32.git#feature/arduino-upstream ### ESP-IDF # type: esp-idf ...
-
ESP32-CAM lower performance due to Espressif update?
Yes this seemed to be it. I don't know what is the difference between "development platform" and "development framework" (IDF), but all I know is that the change that made thinfs slower happened in the former. And I know that because I reverted the version used inside Platform.io. Other than that, I have no idea what is happening in the background. I just use PlatformIO on VSC and have pretty basic programming skills.
arduino-esp32
-
SmartRobot FollowLine & IoT
ESP32: Necessary in order to establish a Wi-Fi connection with the ESP32 CAM.
-
Any good/worthwhile Camera sensor modules for arduino/pico for still photography?
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?
-
ESP32 memory corruption
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).
/* * 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
-
ESP32 S2 Help
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
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
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
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
What are some alternatives?
PlatformIO - Your Gateway to Embedded Software Development Excellence :alien:
esp-idf - Espressif IoT Development Framework. Official development framework for Espressif SoCs.
esp32-oscilloscope - A very basic esp32-based logic analyzer capable of sampling digital signals at up to ~3.2MHz.
Tasmota - Alternative firmware for ESP8266 and ESP32 based devices with easy configuration using webUI, OTA updates, automation using timers or rules, expandability and entirely local control over MQTT, HTTP, Serial or KNX. Full documentation at
IRremoteESP8266 - Infrared remote library for ESP8266/ESP32: send and receive infrared signals with multiple protocols. Based on: https://github.com/shirriff/Arduino-IRremote/
WLED - Control WS2812B and many more types of digital RGB LEDs with an ESP8266 or ESP32 over WiFi!
esp-homekit-arduino-sdk - Arduino wrapper for ESP-IDF HomeKit library
esp32-wifi-penetration-tool - Exploring possibilities of ESP32 platform to attack on nearby Wi-Fi networks.
platform-atmelavr - Atmel AVR: development platform for PlatformIO
ESP32-PCNT-Arduino-Example - Example of using the ESP32's hardware pulse counter to find the RPM of a PC fan from it's tachometer output.
UsbAsp-flash - Program allow you to program flash memory on the protocols spi, I2C, MicroWire. Supports CH341a, UsbAsp, AVRISP(LUFA), Arduino, FT232H.
TinyGo-On-ESP32 - This tutorial will walk you through how to setup Ubuntu 20.10 with Ubuntu Desktop on a Raspberry Pi 4B, install the Espressif ESP-IDF, install Go and TinyGo and finally flash an app to an Espressif ESP32 Microcontroller.