![]() |
esp32 wireless display for moOde, at only $5? - Printable Version +- Moode Forum (https://moodeaudio.org/forum) +-- Forum: Community (https://moodeaudio.org/forum/forumdisplay.php?fid=18) +--- Forum: General Discussion (https://moodeaudio.org/forum/forumdisplay.php?fid=21) +--- Thread: esp32 wireless display for moOde, at only $5? (/showthread.php?tid=7648) |
esp32 wireless display for moOde, at only $5? - rix81 - 04-17-2025 there are various inexpensive esp32 based displays on aliexpress, starting from $5.27 with built in esp32 (check bundle deals) I'm not familiar with this, but is there a way to use them as wireless display for moode? At least to show mdp info, or to get basic controls like switching internet radiostations etc. RE: esp32 wireless display? - TheOldPresbyope - 04-17-2025 (04-17-2025, 07:20 PM)rix81 Wrote: there are various inexpensive esp32 based displays on aliexpress, starting from $5.27 Sounds like a great DIY project for someone, what my dad used to call “a learning experience” ![]() However, once you start adding up all the other stuff you need—-powering it, encasing it, learning how to program it, developing a communication protocol between it and your moOde player, etc.—-you’ll see the appeal of the official 7-in touch screen. At least I did. Regards, Kent RE: esp32 wireless display? - dheijl - 04-18-2025 (04-17-2025, 07:20 PM)rix81 Wrote: there are various inexpensive esp32 based displays on aliexpress, starting from $5.27 https://github.com/dheijl/M5PaperMpdCli does something similar. RE: esp32 wireless display? - rix81 - 04-18-2025 I was hoping that someone already did it. My knowledge of programing is zero, but chatgpt swears that it(he) will provide me working code. Hmmm.... doubt. I'm going to buy this display. And then will see, dheijl - interesting, sadly it's only text ui RE: esp32 wireless display? - dheijl - 04-18-2025 (04-18-2025, 04:38 PM)rix81 Wrote: dheijl - interesting, sadly it's only text ui I hate Gui programming, and will go to great lengths to avoid it... RE: esp32 wireless display for moOde, at only $5? - rix81 - 05-03-2025 my display was delivered. chatgpt was able to generate code to display current station and song, but with only with text ui. he can't do Gui properly ( RE: esp32 wireless display for moOde, at only $5? - Prince - 05-04-2025 Hi, I used this project as a template and recreated it with modifications (using ESP01 with serial data-connection instead of parallel, etc). Working fine. Probably a good starting point. Thanks to Github-User nopnop2002. ![]() RE: esp32 wireless display for moOde, at only $5? - Prince - 05-04-2025 I made another one with a beautiful VFD. Here is a video. [video=youtube]https://youtu.be/aenBZFlNDXU[/video] RE: esp32 wireless display for moOde, at only $5? - Prince - 05-24-2025 Hello everyone, the delivery of the MAX7219 modules arrived. I have connected six pieces 32x8 dot matrix modules together (~80cm length) and control them via an ESP32-C3. (The MAX7219 looks awsome) Instead of contacting the MPD directly, I used the moOdeaudio LCD updater this time. I was very lazy and used Tasmota instead of my own sketch. Data exchange takes place via MQTT. I don't know the Python syntax well, so improvements are welcome. (In particular, sending the MQTT message should be done directly via Python, not via Bash commands.) [video=youtube]https://youtu.be/man-YX2euvE[/video] moOdeaudio[LCDupdater] ----> MQTT-Broker[mosquitto] --WIFI--> (ESP32)Tasmota[Scripting] --> MAX7219 /var/local/www/commandw/lcd_updater.py Code: #!/usr/bin/python3 Tasmota must be compiled as follows: user_config_override.h Code: #ifndef USE_SCRIPT Tasmota-Script: Code: >D 48 Best regards |