mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-19 19:31:50 +03:00
Show external CC1101 in weather station and POCSAG Pager apps
This commit is contained in:
parent
9382ed5451
commit
fe6d44d273
BIN
applications/external/pocsag_pager/images/Fishing_123x52.png
vendored
Normal file
BIN
applications/external/pocsag_pager/images/Fishing_123x52.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 966 B |
@ -232,11 +232,15 @@ void pcsg_view_receiver_draw(Canvas* canvas, PCSGReceiverModel* model) {
|
||||
canvas_set_color(canvas, ColorBlack);
|
||||
|
||||
if(model->history_item == 0) {
|
||||
canvas_draw_icon(canvas, 0, 0, &I_Scanning_123x52);
|
||||
canvas_draw_icon(
|
||||
canvas,
|
||||
0,
|
||||
0,
|
||||
furi_hal_subghz_get_radio_type() ? &I_Fishing_123x52 : &I_Scanning_123x52);
|
||||
canvas_set_font(canvas, FontPrimary);
|
||||
canvas_draw_str(canvas, 63, 46, "Scanning...");
|
||||
//canvas_draw_line(canvas, 46, 51, 125, 51);
|
||||
canvas_set_font(canvas, FontSecondary);
|
||||
canvas_draw_str(canvas, 44, 10, furi_hal_subghz_get_radio_type() ? "Ext" : "Int");
|
||||
}
|
||||
|
||||
// Draw RSSI
|
||||
|
BIN
applications/external/weather_station/images/Fishing_123x52.png
vendored
Normal file
BIN
applications/external/weather_station/images/Fishing_123x52.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 966 B |
@ -226,10 +226,15 @@ void ws_view_receiver_draw(Canvas* canvas, WSReceiverModel* model) {
|
||||
canvas_set_color(canvas, ColorBlack);
|
||||
|
||||
if(model->history_item == 0) {
|
||||
canvas_draw_icon(canvas, 0, 0, &I_Scanning_123x52);
|
||||
canvas_draw_icon(
|
||||
canvas,
|
||||
0,
|
||||
0,
|
||||
furi_hal_subghz_get_radio_type() ? &I_Fishing_123x52 : &I_Scanning_123x52);
|
||||
canvas_set_font(canvas, FontPrimary);
|
||||
canvas_draw_str(canvas, 63, 46, "Scanning...");
|
||||
canvas_set_font(canvas, FontSecondary);
|
||||
canvas_draw_str(canvas, 44, 10, furi_hal_subghz_get_radio_type() ? "Ext" : "Int");
|
||||
}
|
||||
|
||||
// Draw RSSI
|
||||
|
Loading…
Reference in New Issue
Block a user