Click here to Skip to main content
16,004,944 members
Everything / ESP-IDF

ESP-IDF

ESP-IDF

Great Reads

by honey the codewitch
GFX is a fast and full featured replacement for standard IoT drawing libraries that is optimized to reduce bus I/O
by honey the codewitch
How to take your IoT graphical interface from the mid-1990s into the present
by honey the codewitch
Using my IoT ecosystem to produce an Internet enabled clock
by honey the codewitch
Make a little widget that tracks your speed using GPS and strap it to your bike.

Latest Articles

by honey the codewitch
Make a little widget that tracks your speed using GPS and strap it to your bike.
by honey the codewitch
Using my IoT ecosystem to produce an Internet enabled clock
by honey the codewitch
Do you need to be able to perform a firmware update without using WiFi? This project is for you.
by honey the codewitch
A more in-depth guide to creating drivers and other custom draw targets for GFX

All Articles

Sort by Score

ESP-IDF 

8 Mar 2022 by honey the codewitch
GFX is a fast and full featured replacement for standard IoT drawing libraries that is optimized to reduce bus I/O
27 Nov 2021 by honey the codewitch
How to take your IoT graphical interface from the mid-1990s into the present
21 Jun 2024 by honey the codewitch
Using my IoT ecosystem to produce an Internet enabled clock
23 Jul 2024 by honey the codewitch
Make a little widget that tracks your speed using GPS and strap it to your bike.
25 Mar 2022 by honey the codewitch
A more in-depth guide to creating drivers and other custom draw targets for GFX
24 Mar 2024 by honey the codewitch
Do you need to be able to perform a firmware update without using WiFi? This project is for you.
11 Jun 2024 by Pete O'Hanlon
I don't see anything in the code that looks particularly opaque. It's clean and logical, and doesn't look overly complicated for someone with a decent level of C knowledge to understand.
11 Jun 2024 by honey the codewitch
For reference: core2_clock/README.md at main · codewitch-honey-crisis/core2_clock · GitHub[^] Core2 Clock snapshot[^] I have some code that I've created for demonstration purposes. It's not meant to be entirely self-explaining, as that would be...
12 Jun 2024 by KarstenK
I would put the function declarations into a own header and all statics into some control struct. // update the battery level static int bat_level = power.battery_level(); if((int)power.battery_level()!=bat_level) { bat_level...