Search found 21 matches

by hudiy
Sat Aug 02, 2025 9:00 pm
Forum: Displays
Topic: Low Android Auto Resolution
Replies: 11
Views: 155

Re: Low Android Auto Resolution

Hello,
We're not entirely sure, but from one of the screenshots it looks like you opened the configuration file from the installation folder instead of the one used by the installed instance of Hudiy.

In the documentation available at https://github.com/wiboma/hudiy/blob/main/main_configuration.md ...
by hudiy
Sat Aug 02, 2025 7:43 pm
Forum: Hudiy
Topic: Carplay nav
Replies: 6
Views: 54

Re: Carplay nav

Could you please let us know which screen you're using (ideally the exact model)? We’ll try to get the same one and test it in our environment.
by hudiy
Sat Aug 02, 2025 4:43 pm
Forum: Hudiy
Topic: Carplay nav
Replies: 6
Views: 54

Re: Carplay nav

Hudiy operates in auto-negotiation mode for resolution and frame rate with CarlinKit dongles, which is the safest option to ensure that CarPlay works reliably across screens of various sizes and resolutions. In most cases, the frame rate should be 60 FPS. Manually setting the resolution and frame ...
by hudiy
Sat Aug 02, 2025 7:41 am
Forum: Displays
Topic: Low Android Auto Resolution
Replies: 11
Views: 155

Re: Low Android Auto Resolution

Margins work in a way that Android Auto adds black borders of the specified size, and then uses the remaining area to display the UI. Those black borders are later cropped out by Hudiy.

DPI only affects the size of elements in the Android Auto interface - it doesn't change the actual resolution ...
by hudiy
Fri Aug 01, 2025 6:08 pm
Forum: Hudiy
Topic: Carplay nav
Replies: 6
Views: 54

Re: Carplay nav

Unfortunately, CarlinKit dongles do not expose those data. Only media metadata are available.
by hudiy
Fri Aug 01, 2025 3:30 pm
Forum: Hudiy
Topic: Shutdown System
Replies: 6
Views: 75

Re: Shutdown System

If you see such screen it means the url (http://127.0.0.1:9999) is not available. Try to reach http://127.0.0.1:9999 from web browser or via curl command.

What is the output of the python script when you run it from the terminal by python3 /path/to/script.py command?

To run the script from /etc ...
by hudiy
Fri Aug 01, 2025 2:36 pm
Forum: Hudiy
Topic: Shutdown System
Replies: 6
Views: 75

Re: Shutdown System

There is no subprocess available in HTML/JavaScript. The simplest approach is to handle everything in Python. In this minimal example, a Python script starts a basic HTTP server, serves HTML with a "Shutdown" button, and executes the sudo halt command when the button is clicked.

The script below ...
by hudiy
Fri Aug 01, 2025 11:32 am
Forum: Input controllers
Topic: Keyboard volume control
Replies: 7
Views: 62

Re: Keyboard volume control

List of glyphs in e. g. Material Symbols is available at https://fonts.google.com/icons

In your HTML/JavaScript you have to deliver the font by yourself (like e. g. for Roboto in https://github.com/wiboma/hudiy/blob/ma ... idget.html) or you can simply use images for icons.
by hudiy
Fri Aug 01, 2025 11:21 am
Forum: Input controllers
Topic: Keyboard volume control
Replies: 7
Views: 62

Re: Keyboard volume control

In the shortcuts panel, all buttons only support the press event. If you'd like to implement a press and hold feature, you can easily do it using HTML/JavaScript. In your custom control, you can add the required buttons (e. g. as divs) and detect press/hold in JavaScript using addEventListener on ...
by hudiy
Fri Aug 01, 2025 10:41 am
Forum: Input controllers
Topic: Keyboard volume control
Replies: 7
Views: 62

Re: Keyboard volume control

No, there is no mapping for volume but you can use actions to trigger

Volume down (output_volume_down)
Volume up (output_volume_up)
Mute (toggle_output_muted)
Mic volume up (input_volume_up)
Mic volume down (input_volume_down)
Mic mute (toggle_input_muted)

These actions control the volume ...