Hi I want to make a circular matrix with 32 axis like this :
but i don't know how to it i want to write txt and show image in this display and i don't have a clue about what should i do. is this any library that can do this work?
I think you make it with 32 addressable LED strips in a radial pattern. The density of these strips ( pixels per meter ) must be high, maybe these are miniature led strips instead of the normal 5mm LED strips.
I doubt it, you will have to write something yourself.
That is a big ask because the spacing between LEDs changes with the radial distance, so any text will have holes in the letters that depend on where in the display they are. In short if you try and write text it will look rubbish.
Do you mean actual pictures or drawings? Again this will look rubbish due to the uneven spacing. It is great however for abstract shapes that show off the nature of the display as the video showed.
and you consider you have a 32 x 32 matrix on which to display something, without doing any specific maths. The geometry of the strips will distort the shape of whatever you send, but it will probably look cool
Looking at the video, it looks like the images does not actually distort as it moves through the center, but does have a brighter appearance because of the greater concentration of LEDs.
What you could try is mapping the location of the LEDs to specific pixels on a regular rectangular display, display the image, then have a function that reads the pixel data from the image buffer and transfers it to the LED buffer. It would take a massive amount of memory to implement a full color image buffer in memory, an alternative method is using an actual display that allows you to read back pixel data from the display itself. Some TFT displays allow this, and the MCUFRIEND_kbv library has functions to read the internal TFT display buffer.