Click here to Skip to main content
15,886,799 members
Everything / ESP32

ESP32

ESP32

Great Reads

by honey the codewitch
Combine some great technologies for rich, responsive IoT user interfaces on the ESP32
by honey the codewitch
How to take your IoT graphical interface from the mid-1990s into the present
by deangi
DIY GPS Location Tracker
by honey the codewitch
Do efficient, low level parsing of markup like HTML and XML

Latest Articles

by deangi
An ESP32 with a temperature/humidity sensor are configured as a bluetooth low energy server to provide remote monitoring
by deangi
Monitoring AC loads with CT sensors
by deangi
The inexpensive ESP32 platform is used to take periodic photos that can make a time-lapse video.
by deangi
An ESP32 is used to track water usage and serve web pages with water use data

All Articles

Sort by Score

ESP32 

20 Mar 2023 by honey the codewitch
Combine some great technologies for rich, responsive IoT user interfaces on the ESP32
27 Nov 2021 by honey the codewitch
How to take your IoT graphical interface from the mid-1990s into the present
21 Nov 2023 by deangi
DIY GPS Location Tracker
24 Jul 2021 by honey the codewitch
Do efficient, low level parsing of markup like HTML and XML
11 Jun 2022 by honey the codewitch
Create a simple synchronized analog clock using GFX, and a bit of code
26 Feb 2023 by honey the codewitch
How to make very responsive, flicker free interactive screens without using a lot of memory
21 Apr 2022 by honey the codewitch
Take advantage of the PlatformIO repository to easily add GFX to your projects
21 Jul 2022 by honey the codewitch
Easily blank the screen after a timeout period
25 Mar 2022 by honey the codewitch
On PC platforms, just getting it done is king. On IoT, the trick is doing it in the first place.
9 May 2022 by honey the codewitch
Explore some streaming techniques while getting your shiny new ESP32S3 to do some USB and MIDI tricks
20 Apr 2022 by honey the codewitch
Implement a fancy color picker in your ESP32 WROVER or WROOM IoT applications
16 Jan 2024 by deangi
An ESP32 is used to track water usage and serve web pages with water use data
15 May 2022 by honey the codewitch
Trigger tracks from Type 2 MIDI files to add to your recording or performance
16 Jun 2022 by honey the codewitch
Create a clock that uses multiple Internet services to detect your weather, date and time
3 Mar 2021 by k5054
Have you tried reinterpret_cast? e.g.:#include #include int foo(int) { return 1; } int main() { int (*p1)(int) = &foo; void *p2 = reinterpret_cast(&foo); assert(p1 == p2); } I've tested this using...
3 Mar 2021 by honey the codewitch
I'm writing some system code for a filesystem driver for an ESP32 based IoT gadget. My toolchain will always be gcc because the ESP32's developer framework requires GCC. The architecture is a known quantity. Portability is no concern. Function...
3 Mar 2021 by honey the codewitch
I dismissed that out of hand, without even trying it. It works though. Gosh don't I feel smart today. Thanks!
5 Nov 2022 by Majestic Frog
Hello everyone! I am currently having a big issue with an RFID Reader. I'm trying to read data from this reader from Amazon right here, which only supports Wiegand 26 an 34 transmissions, using an ESP32 device and utilizing this library from...
2 Feb 2022 by CPallini
It looks the library is gathering the bits correctly ( 1204937293 = 0x47D1E24D, you see, the last 3 bytes are shown reversed in the output you posted). but is assuming some particular message format while presenting them. You may have a look at...
22 Apr 2022 by honey the codewitch
How to use GFX to drive multiple screens at the same time on an ESP32
13 May 2022 by V_Jviji
i compiled a LITTLEFS file system code for esp32. But the compilation was not successful. It generate the following error error: no matching function for call to 'LITTLEFSImpl::open(const char*&, const char [2])' File f = open(path, "r"); ...
13 May 2022 by OriginalGriff
If you look at the GitHub source: Arduino/LittleFS.cpp at master · esp8266/Arduino · GitHub[^] You will see that there are only one signature declared for LITTLEFSImpl::open FileImplPtr LittleFSImpl::open(const char* path, OpenMode openMode,...
13 May 2022 by Richard MacCutchan
The open function does not take a string as the second parameter, it takes a bit mask of the OpenMode constants. See _open, _wopen | Microsoft Docs[^] for the values defined in Microsoft's stdio.h.
31 Jul 2022 by yoii
Hello, I am starting a MQTT project using esp32 and humidity sensor, I want to be able to send data from my sensor to my Ubidots dashboard, however it is really confusing for me as im a beginner. I would appreciate any form of help to help...
4 Nov 2022 by Member 15820716
w26 generally uses 2 site digits and 4 ID digits with the site sent first, then the ID, BUT each part is sent in reverse order. So if the code is p1 Site1 Site2 ID1 ID2 ID3 ID4 p2 it gets encoded as p2 ID1 ID2 ID3 ID4 Site1 Site2 p1 with p1...
5 Nov 2022 by merano99
Found the statement that the library usually passes the order of the bytes as they come in over the data lines. There should be readers that can invert the read data, otherwise you can write a function that inverts the bytes (BIG- LITTLE ENDIAN...
26 Feb 2024 by deangi
An ESP32 with a temperature/humidity sensor are configured as a bluetooth low energy server to provide remote monitoring
19 Jul 2021 by honey the codewitch
Browse and extract zips in constrained memory environments
25 Aug 2022 by honey the codewitch
Dusting off an old MIDI toy project and making it less of a toy.
3 Oct 2022 by honey the codewitch
Monitor your CPU and GPU activity with this little project
17 Jan 2024 by deangi
The inexpensive ESP32 platform is used to take periodic photos that can make a time-lapse video.
25 Apr 2022 by honey the codewitch
Use batching to increase performance during complex rendering operations.
11 Jul 2023 by honey the codewitch
Monitor your PC's CPU and GPU with an ESP32
28 Jan 2024 by deangi
Monitoring AC loads with CT sensors
14 Jul 2022 by honey the codewitch
Unlock the potential of this neat little IoT widget
11 Mar 2023 by honey the codewitch
Initializing the ESP LCD Panel API is a chore. Here's some boilerplate code to make it easier.
16 Jun 2022 by Member 4206974
A work for exploring the Asynchronous WEB Server, the SPIFFS File system and the exploitation of the dual core
16 Mar 2023 by honey the codewitch
Debug your circuits with this handy device
13 Mar 2023 by honey the codewitch
Easily determine active devices on an I2C bus with this simple device