Ken Van Hoeylandt 85e26636a3
C++ conversion (#80)
Converted project to C++
2024-11-22 20:26:08 +01:00

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* get_status_icon_for_rssi(int rssi, bool secured);
} // namespace