* Boot splash and more - Added developer sdkconfig - Refactored the way FreeRTOS includes are included - Improved Gui/Loader logic - Implemented boot app with splash screen * Updated naming for Gui and Loader services * Renamed Screenshot service methods * Renames * Service renames
14 lines
331 B
C++
14 lines
331 B
C++
#pragma once
|
|
|
|
namespace tt::service::statusbar {
|
|
|
|
/**
|
|
* Return the relevant icon asset from assets.h for the given inputs
|
|
* @param rssi the rssi value
|
|
* @param secured whether the access point is a secured one (as in: not an open one)
|
|
* @return
|
|
*/
|
|
const char* getWifiStatusIconForRssi(int rssi, bool secured);
|
|
|
|
} // namespace
|