Replies: 7 comments 15 replies
-
Also I've a gpio touch screen and a usb display that requires some kernel driver compilation. Are there instructions on how to enable these display options? Is it also possible to use a separate usb class compliant sound card for audio? |
Beta Was this translation helpful? Give feedback.
-
Hi! although minidexed is running on a raspberry pi, it does NOT run linux but rather a well crafted C++ program. So, unless the devices are supported by someone, they won't work. USB audio is not supported, it requires things which Circle (the underlying library) does nor support. But, as always, patches are welcome! |
Beta Was this translation helpful? Give feedback.
-
LVGL seems to be working on circle. That would enable the use of a multitude of displays and beautiful dinamic UI would also be possible, even through HDMI. |
Beta Was this translation helpful? Give feedback.
-
Yes, but there are two main types of display in circle - text/terminal and graphical. LVGL and the ST7789 displays are of the graphical variety. HD44780 and the existing SSD1306 implementation only implement the text-based variety. There is no code in MiniDexed to make use of the graphical displays in circle - as I say it would require a re-write of the UI. And the LVGL and ST7789 displays, as I understand it, haven't implemented the character-based API that MiniDexed uses. One option would be to implement the character API on top of the raw graphics drivers for the ST7789 and LVGL (this is actually what happens for the SSD1306 - it only implements the character interface even though it is a pixel display). But as far as I know, that hasn't been done yet and that would only give us the existing MiniDexed test-based UI but it would allow the use of more displays. Kevin |
Beta Was this translation helpful? Give feedback.
-
We can't select display type by passing an argument? LVGL or character type. |
Beta Was this translation helpful? Give feedback.
-
I've managed to get the correct resolution. Touch panel still not working. This is the display I will use on my 3D printer. I will try to find a more affordable one. Later I will make a test of the áudio output on the display using MiniDexed and try to get it running alongside. |
Beta Was this translation helpful? Give feedback.
-
I have started working on a touch UI mockup, but I'm kind of lost on how it should really be. Suggestions? |
Beta Was this translation helpful? Give feedback.
-
Can I attach a hdmi display and a typing keyboard for display and changing settings?
Beta Was this translation helpful? Give feedback.
All reactions