schmurtzm / MrDiy-Audio-Notifier

MrDiy Audio Notifier (based on esp8266audio) ported to platformio for ESP32
58 stars 23 forks source link

Not an issue , we added a matrix to the code #21

Open dosipod opened 2 years ago

dosipod commented 2 years ago

I could not see any option to post contribution , In all cases we just added a a matrix display to the code so now the notification is also displayed , it is a hit with us :

https://github.com/MoonModules/WLED-Projects/tree/master/MadLab%40Aldiy%20

This is part of students projects workshop so please excuse any mess

dosipod commented 2 years ago

@markvader I hope it helps but the matrix option is flexible as it is using Adafruit_GFX.h hence any matrix can work with that , we have also tested with 8x32 ws2812b matrix and it worked but we did not find the big matrix to be practical as the aim is small display . If you check the code , the part for the TM1640 matrix definition is really very small and the rest is a standard matrix definition

//==================816==========================

include

include

include

TM1640 module(21,19) ;

define MATRIX_NUMCOLUMNS 16

define MATRIX_NUMROWS 8

TM16xxMatrixGFX matrix(&module, MATRIX_NUMCOLUMNS, MATRIX_NUMROWS); //============================================