By default, Hudiy uses the first available Wi-Fi adapter to create a hotspot. The order of the adapter is controlled by NetworkManager from Raspberry Pi OS.
You can also specify the hardware address of the Wi-Fi adapter to be used for creating the hotspot in main_configuration.json:
https://github ...
Search found 582 matches
- Fri Jun 12, 2026 10:54 pm
- Forum: Connectivity
- Topic: Android Auto and how it would handle 2 WiFi connections
- Replies: 1
- Views: 10
- Fri Jun 12, 2026 10:35 am
- Forum: Connectivity
- Topic: Getting a ELM327 Data displayed
- Replies: 3
- Views: 596
Re: Getting a ELM327 Data displayed
In Hudiy, you can display data from any source. Hudiy allows you to integrate HTML/JavaScript as interface elements (widgets, applications, overlays), where you can display your data in any way and from any source. Hudiy does not have to participate in the communication; it can simply serve as a ...
- Fri Jun 12, 2026 8:08 am
- Forum: Announcements
- Topic: Update to version 1.20 (Bookworm) and 2.16 (Trixie) is already available
- Replies: 18
- Views: 348
Re: Update to version 1.20 (Bookworm) and 2.16 (Trixie) is already available
The equalizer and echo cancel modules are loaded from $HOME/.hudiy/share/hudiy_startup.sh. You can change the module parameters or disable their loading by modifying this file.
- Thu Jun 11, 2026 11:38 am
- Forum: Other
- Topic: Everything is working... except...
- Replies: 11
- Views: 90
Re: Everything is working... except...
Do you create any socket in your script? In the output there is a bind error which means that port is already in use. By default Hudiy binds 44405 and 44406 ports for API endpoints.
- Thu Jun 11, 2026 7:50 am
- Forum: Announcements
- Topic: Update to version 1.20 (Bookworm) and 2.16 (Trixie) is already available
- Replies: 18
- Views: 348
Re: Update to version 1.20 (Bookworm) and 2.16 (Trixie) is already available
Is there a way to modify the hudiy_equalizer_sink to make it 4.1, 5.1 and 7.1?
hudiy_equalizer_sink is a virtual sink created by the equalizer plugin. PipeWire will automatically adjust the number of channels if upmix is enabled. If you have a physical device that supports 4.1/5.1, PipeWire ...
- Wed Jun 10, 2026 8:45 pm
- Forum: Other
- Topic: Everything is working... except...
- Replies: 11
- Views: 90
Re: Everything is working... except...
According to the output, it looks like your script blocks access to either the input devices (accessible via evdev) or KMS resources for rendering. Try configuring your script's .service file to launch after hudiy.service by adding After=hudiy.service in the [Unit] section.
To check exactly what is ...
To check exactly what is ...
- Wed Jun 10, 2026 7:29 pm
- Forum: Announcements
- Topic: Update to version 1.20 (Bookworm) and 2.16 (Trixie) is already available
- Replies: 18
- Views: 348
Re: Update to version 1.20 (Bookworm) and 2.16 (Trixie) is already available
The feature will allow you to override onSurface color which is used for most texts and icons.
- Wed Jun 10, 2026 7:21 pm
- Forum: Other
- Topic: Everything is working... except...
- Replies: 11
- Views: 90
Re: Everything is working... except...
What is the output of pactl list sinks and pactl info commands when your script is running?
Please also post output of the systemctl --user status hudiy.service command.
Please also post output of the systemctl --user status hudiy.service command.
- Wed Jun 10, 2026 4:36 pm
- Forum: Other
- Topic: Everything is working... except...
- Replies: 11
- Views: 90
Re: Everything is working... except...
Hudiy does not use or communicate directly with audio devices. Instead, it utilizes PipeWire, which is a standard component of Raspberry Pi OS for audio handling. PipeWire is simply an audio server that allows multiple applications to play and record audio at the same time.
ALSA does not allow an ...
ALSA does not allow an ...
- Wed Jun 10, 2026 4:01 pm
- Forum: Other
- Topic: Everything is working... except...
- Replies: 11
- Views: 90
Re: Everything is working... except...
'Hudiy is launching...' indicates that you are using console mode. Does your script utilize GPU resources in any way (e.g., UI)? EGLFS used in console mode only allows for displaying one application window at a time.
Another thing that might be blocking Hudiy from starting is PipeWire. The startup ...
Another thing that might be blocking Hudiy from starting is PipeWire. The startup ...