mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-06 19:47:02 +03:00
- Bug fixes - Jack doesn't show as plugged in if no jack detection is configured - New layout - Updated jQuery to latest version - Updated bootstrap to latest version - Updated the command processing backend to support UI interactions - Added a number of accessors to normalize read/update various configuration entries - Added more GPIOs to the status tab GPIO list - Added several configuration sections for hardware and system - Removed pop-over windows from system messages - Added a message count pill to the status tab - Added support for message count pill based on the highest severity - Updated the message list table to set colours based on messages severity - Added command processing message area close to the action buttons to provide feedback from running the commands
43 lines
1.7 KiB
C
43 lines
1.7 KiB
C
/*
|
|
* (c) Philippe G. 2019, philippe_44@outlook.com
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "gds.h"
|
|
|
|
|
|
/*
|
|
The displayer is not thread-safe and the caller must ensure use its own
|
|
mutexes if it wants something better. Especially, text() line() and draw()
|
|
are not protected against each other.
|
|
In text mode (text/line) when using DISPLAY_SUSPEND, the displayer will
|
|
refreshed line 2 one last time before suspending itself. As a result if it
|
|
is in a long sleep (scrolling pause), the refresh will happen after wakeup.
|
|
So it can conflict with other display direct writes that have been made during
|
|
sleep. Note that if DISPLAY_SHUTDOWN has been called meanwhile, it (almost)
|
|
never happens
|
|
The display_bus() shall be subscribed by other displayers so that at least
|
|
when this one (the main) wants to take control over display, it can signal
|
|
that to others
|
|
*/
|
|
extern struct GDS_Device *display;
|
|
|
|
enum displayer_cmd_e { DISPLAYER_SHUTDOWN, DISPLAYER_ACTIVATE, DISPLAYER_SUSPEND, DISPLAYER_TIMER_PAUSE, DISPLAYER_TIMER_RUN };
|
|
enum displayer_time_e { DISPLAYER_ELAPSED, DISPLAYER_REMAINING };
|
|
|
|
enum display_bus_cmd_e { DISPLAY_BUS_TAKE, DISPLAY_BUS_GIVE };
|
|
bool (*display_bus)(void *from, enum display_bus_cmd_e cmd);
|
|
const char *display_conf_get_driver_name(const char * driver);
|
|
bool display_is_valid_driver(const char * driver);
|
|
|
|
void displayer_scroll(char *string, int speed, int pause);
|
|
void displayer_control(enum displayer_cmd_e cmd, ...);
|
|
void displayer_metadata(char *artist, char *album, char *title);
|
|
void displayer_timer(enum displayer_time_e mode, int elapsed, int duration);
|
|
char * display_get_supported_drivers(void);
|