Search found 429 matches

by hudiy
Sun Feb 15, 2026 9:45 pm
Forum: Audio
Topic: FM-Radio: distorted audio, ok with rtl_fm player
Replies: 2
Views: 62

Re: FM-Radio: distorted audio, ok with rtl_fm player

Good news. We've identified potential behavior differences between v3 and v4/v5. We're just waiting for the shipment with the v4/v5 dongle to run the tests on real hardware.
by hudiy
Sun Feb 15, 2026 10:30 am
Forum: Extensions
Topic: HTTP Get as Shortcut
Replies: 3
Views: 37

Re: HTTP Get as Shortcut

Hudiy API is provided over TCP or WebSocket. If your script launches before Hudiy, ensure it has retry logic to reconnect until the Hudiy is active. A simple 'retry every x seconds' approach will work. You can find an implementation of this simple mechanism in the idle_screen example mentioned ...
by hudiy
Sat Feb 14, 2026 11:19 pm
Forum: Extensions
Topic: HTTP Get as Shortcut
Replies: 3
Views: 37

Re: HTTP Get as Shortcut

Hello,

One possible way to do this is by using Hudiy API and Python. You can use the API to register a custom action that is then dispatched by a shortcut. Next, you can handle this action dispatch in Python and execute your HTTP request. Examples of how to register and handle custom actions can be ...
by hudiy
Sat Feb 14, 2026 7:20 pm
Forum: General discussion
Topic: noob questions
Replies: 22
Views: 120

Re: noob questions


question, if i get this dual display to work finally, can you have 2 different sized displays? like large for radio and a smaller for gauge cluster.


Yes. You need to set the window size to cover the total width and height of both screens (the width should be the sum of both screens, and the ...
by hudiy
Sat Feb 14, 2026 7:10 pm
Forum: Hudiy
Topic: Change Hudiy’s DPI
Replies: 6
Views: 90

Re: Change Hudiy’s DPI

We've introduced a new bottomBarHeight parameter in version 1.12/2.8. You can now configure the bottom bar height directly in the app settings (Menu -> Hudiy -> Settings -> Appearance) or manually in main_configuration.json file as described in: https://github.com/wiboma/hudiy/blob/main/main ...
by hudiy
Sat Feb 14, 2026 2:17 pm
Forum: Announcements
Topic: Update to version 1.12 (Bookworm) and 2.8 (Trixie) is already available
Replies: 0
Views: 47

Update to version 1.12 (Bookworm) and 2.8 (Trixie) is already available

We are happy to announce that Hudiy 1.12/2.8 is now available. This release focuses primarily on enabling Hudiy to run on the Raspberry Pi 3B, 3B+, and Zero 2. Thanks to various optimizations, we were able to achieve a user experience on the Pi 3B, 3B+, and Zero 2 comparable to that of the Pi 4B and ...
by hudiy
Fri Feb 13, 2026 11:39 pm
Forum: Displays
Topic: Waveshare 17916, Android Auto Window Size
Replies: 8
Views: 58

Re: Waveshare 17916, Android Auto Window Size

You are welcome. Thanks for the feedback. It could be a JSON syntax issue. In JSON, every brace and comma matters. There are various validators available online to check the syntax before saving the file, e.g., https://jsonlint.com/.

BTW, if you want to keep the Bottom Bar exposed only for the ...
by hudiy
Fri Feb 13, 2026 11:11 pm
Forum: Displays
Topic: Waveshare 17916, Android Auto Window Size
Replies: 8
Views: 58

Re: Waveshare 17916, Android Auto Window Size

Could you please post the content of $HOME/.hudiy/share/main_configuration.json file?

Also please double check that you modify correct file ( $HOME/.hudiy/share/ main_configuration.json).

The .hudiy folder begins with a dot, which means it is hidden by default. To show or hide hidden files in the ...
by hudiy
Fri Feb 13, 2026 10:54 pm
Forum: Displays
Topic: Waveshare 17916, Android Auto Window Size
Replies: 8
Views: 58

Re: Waveshare 17916, Android Auto Window Size

You also need to adjust resolution, widthMargin and heightMargin to match desired rendering surface size (1280x350):

Surface size: 1280x350
720p -> 1280x720
widthMargin: 1280 - 1280 = 0
heightMargin: 720 - 350 = 370


"androidAuto" : {
.........
"resolution" : "720p",
"widthMargin" : 0 ...
by hudiy
Fri Feb 13, 2026 9:13 pm
Forum: General discussion
Topic: noob questions
Replies: 22
Views: 120

Re: noob questions

To display the Hudiy window on two screens, you need to stretch the Hudiy window. You can do this in main_configuration.json by setting windowWidth and windowHeight: https://github.com/wiboma/hudiy/blob/main/main_configuration.md#application

For example, you can set the windowWidth to the combined ...