Comments for Random Nerd Tutorials https://randomnerdtutorials.com Learn ESP8266, ESP32, Arduino, and Raspberry Pi Mon, 23 Jun 2025 21:30:21 +0000 hourly 1 https://wordpress.org/?v=6.8.1 Comment on VS Code and pioarduino IDE: Programming the ESP32 (Windows, Mac OS X, Linux) by JB https://randomnerdtutorials.com/vs-code-pioarduino-ide-esp32/#comment-1060399 Mon, 23 Jun 2025 21:30:21 +0000 https://randomnerdtutorials.com/?p=169287#comment-1060399 Hi Sara
You wrote this in a previous reply here on the site.
If you add this line in your PlatformIO projects, on the plaformio.ini file, it will use core 2, and you can still use older methods.
platform = espressif32@3.5.0

because of that I found this page.
https://gist.github.com/maxpromer/2e88c13ab8692263c88870ca8636cf0c
There I found that if I use
platform = espressif32@6.9.0
which is equivalent to arduino core 2.0.17
then I could program Esp32 s2, esp32s3 and Esp32 c6
under PioArduino
so thank you Sara

]]>
Comment on VS Code and pioarduino IDE: Programming the ESP32 (Windows, Mac OS X, Linux) by David Sims https://randomnerdtutorials.com/vs-code-pioarduino-ide-esp32/#comment-1060341 Mon, 23 Jun 2025 16:28:08 +0000 https://randomnerdtutorials.com/?p=169287#comment-1060341 In reply to Sara Santos.

Hi Sara,
Yes it is now different, it is now as I described in my earlier post.
I think if you now reload your pioarduino extension you’ll see what I mean. As I say, it is a fairly minor, but nevertheless confusing detail to those following the tutorial.
Regards,
David

]]>
Comment on VS Code and pioarduino IDE: Programming the ESP32 (Windows, Mac OS X, Linux) by JB https://randomnerdtutorials.com/vs-code-pioarduino-ide-esp32/#comment-1060332 Mon, 23 Jun 2025 15:42:34 +0000 https://randomnerdtutorials.com/?p=169287#comment-1060332 In reply to Sara Santos.

Hi Sara don’t bother and thank you for your reply
I realized that it is the usual thing with IDE’s that when there are major updates that it takes some time before the different chips are properly supported and the various bugs are fixed. It always takes some time before Esp32 s2, Esp32 s3 and Esp32 c6 are properly supported.
It is better with Esp32 c3.

]]>
Comment on ESP32 WebSocket Server: Control Outputs (Arduino IDE) by Vlad https://randomnerdtutorials.com/esp32-websocket-server-arduino/#comment-1060305 Mon, 23 Jun 2025 12:13:26 +0000 https://randomnerdtutorials.com/?p=99437#comment-1060305 In reply to Vlad.

In order for websocket to be accessible from WAN network, i had to make small change in code, following conversation at: https://github.com/me-no-dev/ESPAsyncWebServer/issues/1416

var gateway = ws://${window.location.hostname}/ws;
to
var gateway = ‘ws://’ + document.location.host + ‘/ws’;

Than, on your router, open port 80 for ESP32 ip and it should work.

]]>
Comment on Input Data on HTML Form ESP32/ESP8266 Web Server using Arduino IDE by beta-L-user https://randomnerdtutorials.com/esp32-esp8266-input-data-html-form/#comment-1060297 Mon, 23 Jun 2025 11:13:20 +0000 https://randomnerdtutorials.com/?p=88796#comment-1060297 In reply to John Arneaud.

No!
The code crashes using the latest versions applying to ESP8266s. The code works for ESP32!
Please read my post sent may, 6th and 7th. You see the dump from the serial port, followed by a new start of the ESP8266. I tried different onces (NodeMCU 0.9 and 1.0, Wemos D1, Wemos D1 mini, D1 mini pro) and all of them do not work with the latest versions.

]]>
Comment on VS Code and pioarduino IDE: Programming the ESP32 (Windows, Mac OS X, Linux) by Sara Santos https://randomnerdtutorials.com/vs-code-pioarduino-ide-esp32/#comment-1060290 Mon, 23 Jun 2025 10:23:43 +0000 https://randomnerdtutorials.com/?p=169287#comment-1060290 In reply to JB.

Hi.
What is exactly the error that you’re getting?

Regards,
Sara

]]>
Comment on MicroPython: ESP-NOW with ESP32 (Getting Started) by Sara Santos https://randomnerdtutorials.com/micropython-esp-now-esp32/#comment-1060289 Mon, 23 Jun 2025 10:23:15 +0000 https://randomnerdtutorials.com/?p=170305#comment-1060289 In reply to Stephen Brocket.

Hi.
Yes, using uJSON can be a benefit to send structured data.
This tutorial is a simple getting started guide.
We intend to create slightly more complex projects and then we can use uJSON with those.

Thanks for your suggestion.

Regards,
Sara

]]>
Comment on VS Code and pioarduino IDE: Programming the ESP32 (Windows, Mac OS X, Linux) by Sara Santos https://randomnerdtutorials.com/vs-code-pioarduino-ide-esp32/#comment-1060288 Mon, 23 Jun 2025 10:21:03 +0000 https://randomnerdtutorials.com/?p=169287#comment-1060288 In reply to David Sims.

Hi.
I understand your point.

However, the only thing that changes is the icon at the left sidebar.
All other things keep saying “PlaformIO” and the icon on the Home is also the PlaformIO icon.
At least this was like this when I created this tutorial.

Does it show something different now?

Regards,
Sara

]]>
Comment on MicroPython: ESP32/ESP8266 with DS3231 Real Time Clock (Get Time and Set Alarms) by Sara Santos https://randomnerdtutorials.com/micropython-esp32-esp8266-ds3231/#comment-1060287 Mon, 23 Jun 2025 10:17:36 +0000 https://randomnerdtutorials.com/?p=165104#comment-1060287 In reply to Francis Savoldelli.

Hi.
We don’t have that exact project you’re looking for.
But, we have a guide for the OLED display: https://randomnerdtutorials.com/micropython-oled-display-esp32-esp8266/
You may want to combine this project with the OLED tutorial to create your clock.

Also, I don’t have an NTP tutorial using MicroPython at the moment.

Regards,
Sara

]]>
Comment on VS Code and pioarduino IDE: Programming the ESP32 (Windows, Mac OS X, Linux) by JB https://randomnerdtutorials.com/vs-code-pioarduino-ide-esp32/#comment-1060270 Mon, 23 Jun 2025 08:43:57 +0000 https://randomnerdtutorials.com/?p=169287#comment-1060270 In reply to JB.

The problem doesn’t seem to be the WiFi, sorry, my mistake.

]]>