wvr
Home of WVR, an open source, Arduino compatible, ESP32-based Sample Player and Audio Framework. (by marchingband)
gfx
GFX is a device independent graphics library primarily intended for IoT MCUs but not limited to that. (by codewitch-honey-crisis)
Our great sponsors
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.
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.
wvr
Posts with mentions or reviews of wvr.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2022-08-10.
-
Creating an 8-channel, 16-bit audio recorder with ESP32 -- possible?
I use klm8g1getf. It’s 8GB and about $5 from LCSC, easyEDA has the footprint and symbol. I run mine at 52mhz, 4-line mode. I’m able to playback 20 stereo wavs at once @44.1k 16bit. Writing is a lot slower but 8 should be possible. I wrote my own flat file system to prioritize speed, all the standard file systems will slow you down a lot, as far as I could find, sequential reads and writes are much faster, and most file systems don’t do that. https://github.com/marchingband/wvr/blob/main/src/emmc.c
-
is it possible to port this code to Arduino ide?
https://github.com/marchingband/wvr/blob/main/src/boot.cpp This uses eMMC which is very similar to SD.
gfx
Posts with mentions or reviews of gfx.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-03-05.
- htcw_gfx 1.4.6 is released
-
Just got SVG graphics rendering on an ESP32
Thx, interesting. Made me G**gle it: https://github.com/codewitch-honey-crisis/gfx
-
Since so many people have a little TTGO Display T1...
The graphics library to drive the display is htcw_gfx, as I mentioned, https://honeythecodewitch.com/gfx/ which includes true type font and jpg support built in.
-
I've updated my Sonos remote code
Also just as importantly, this runs the htcw_gfx graphics library through its paces, so it's a good starting example of how to use some of the core features like JPGs and Truetype fonts.
-
htcw_gfx high performance batching with the TTGO T1
As some of you may know I'm the author of the htcw_gfx library for IoT. The library supports TrueType fonts, JPGs, alpha blending, automatic color matching for indexed devices like color e-paper displays, X11 colors, arbitrary pixel and bitmap formats and automatic conversion between different pixel formats. It was designed as a bit more high level of a library than something like TFT_eSPI, and is built using C++isms and Generic Programming, so templates are what's for dinner.
-
Demo of using htcw_gfx with the LCD Panel API
It *is* possible to use htcw_gfx with this API, as long as you're willing to draw to a bitmap and then send that bitmap to the display. It's pretty easy to do from platformIO under arduino or the ESP-IDF.
- Noob question : Can the esp32 replace arduino?
-
What Framework you prefer?
htcw_gfx makes heavy use of templates and metaprogramming to allow for things like arbitrary binary pixel formats that wouldn't be feasible to compute and manipulate at runtime. The documentation covers what it looks like to use it.
- How many of you have a Lilygo T5 4.5 inch E-paper unit?
-
It's coming. Lightweight TTF support for LVGL, for things like the ESP32
I haven't. In fact, LVGL has similar issues, and its own lvgl_conf.h, just like TFT_eSPI. I don't know workaround in C and LVGL is C. In htcw_gfx's drivers I use templates to handle the settings. They are template arguments. Unfortunately in C this is not possible.
What are some alternatives?
When comparing wvr and gfx you can also consider the following projects:
esp-idf-sys - Bindings for ESP-IDF (Espressif's IoT Development Framework)
TJpg_Decoder - Jpeg decoder library based on Tiny JPEG Decompressor
esp-adf - Espressif Audio Development Framework
esp_ttgo_pingo_3d - A test using a TTGO module (ESP32 + screen) which renders a 3d scene using pingo library
odroid-go-multi-firmware - Odroid-go-multi-firmware is an improvement of the official ODROID-GO firmware. It allows you to keep multiple applications installed in the flash and switch instantly between them.
wokwi-features - Wokwi Feature requests & Bug Reports
lcd_ili9341 - ILI9341 driver for the ESP-IDF and GFX