brian.settings package¶
Module contents¶
- brian.settings.set_volume(percent: float) None¶
Set current volume
- Parameters:
percent – Percentage of the maximum volume to apply. The value will be clipped to range 0% ~ 100%. The volume will not be set higher, than the one set in the settings in main menu.
- brian.settings.get_current_volume() float¶
- Returns:
Current speaker volume in percent (0% ~ 100%).
- brian.settings.get_preferred_volume() float¶
- Returns:
Speaker volume that was set in the settings in main menu (0% ~ 100%).
- brian.settings.set_lcd_brightness(percent: float) None¶
Set current lcd brightness
- Parameters:
percent – Percentage of the maximum brightness to apply. The value will be clipped to range 1% ~ 100%. The brightness will not be set higher, than the one set in the settings in main menu.
- brian.settings.get_current_lcd_brightness() float¶
- Returns:
Current LCD brightness in percent (1% ~ 100%).
- brian.settings.get_preferred_lcd_brightness() float¶
- Returns:
LCD brightness value that was set in the settings in main menu (0% ~ 100%).
- brian.settings.enable_os_button_sounds(enable: bool) None¶
- Parameters:
enable – Whether to enable or disable os click sounds. Works only if OS is not muted in the settings in main menu.
- brian.settings.are_os_button_sounds_enabled() bool¶
- Returns:
Whether OS clicks are enabled (not muted).
- brian.settings.are_os_button_sounds_preferred() bool¶
- Returns:
Whether OS clicks were enabled in the settings in main menu.