Wifi-enabled animated GIF-Display with NTP Clock and SD Card possible?

Hi there,

i would like to have a high amount of GIF files on a SD card, so that the program code could randomly display an GIF, switch to a ntp-fetched time-display now and then, switch back to GIF display after some seconds, switch to weather infos and so on. Is it possible to build a LED matrix which is capable of fetching the time via NTP, weather or other information from the internet and displaying these informations together with animated GIFs, read from an SD card? So that, for example, it displays animated water drops in rainy conditions, animated food items on lunchtime etc.?

It is planned much like the PixelTime display made by Dominic Buchstaller.
I already have build a working PixelTime-version with a 16x32 matrix and a NodeMCU ESP8266. The problem is, i am running out ouf memory, even if i use just a small amount of (hard-coded) animation frames, because the Pxmatrix library does not work flicker-free with a SPIFFS, so i have to encode the frames in the code. I would like to use the SmartMatrix library, because it sounds fast.

So I am looking for a solution to have my 16x32-matrix connected to a (maybe another) microcontroller (capable of wifi, because it should get the time via NTP, i don’t want a RTC), which reads GIF files from a SD card according to various conditions and display them together with the time and other internet-read information.

Is this possible?

Kingd regards,

Signatum

Hello

I have do (soon)do it … but i link one tennsy3.6 (with a bme280,ir, and smartmatix (64*128)) and one esp32 (with audio card) i use serial port to speek together… i have web radio ,web meteo , local meto (bme280) and gif animated (on teensy sd) !!! time will be update by internet in teensy with rct. I’m in holiday…some picture where i’m back…

  1. switch to ESP32, ESP8266 is not worth its limitations there
  2. SPIFFS will give you hangs if you store big enough GIFS and try to animate them real time. FatFS fixes this.
    See
    http://marc.merlins.org/perso/arduino/post_2019-03-30_Using-FatFS-FFat-on-ESP32-Flash-With-Arduino.html
    For ESP32 wiring and tips, see Marc's Blog: arduino - SmartMatrix, SmartMatrix Shield v4 for Teensy, ESP32 shield with level shifter, and SmartMatrix::GFX
    good luck