9d952ed855
* File_Worker: getting the name of a new file with an index * SubGhz: add decoder RAW protocol * SubGhz: add view Save RAW * SubGhz: refactoring subghz custom event * SubGhz: fix syntax * SubGhz: fix error build * SubGhz: test build * SubGhz: refactoring subghz, add rename, delete, start and emulate RAW signal * SubGhz: fix triangle glitch in save raw view * SubGhz: fix receiver config scene * SubGhz: fix transfer after returning from save scene * Canvas: add font rotation * SubGhz: raw protocol encoder * SubGhz: fix error completion of transfer raw encoder * SubGhz: increased the speed of reading RAW data from a flash drive, displaying the name of the saved file in the Save RAW scene * Canvas: fix font rotation * SubGhz: fix navigation save RAW scene * SubGhz: add decode came atomo * Git: renormalize * Cleanup sources and enums * Gui: add font direction to canvas reset, canvas init sequence cleanup. * SubGhz: reorder menu. * Gui: correct canvas_set_font_direction signature Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
27 lines
748 B
C
27 lines
748 B
C
#pragma once
|
|
|
|
#include <gui/view.h>
|
|
#include "../helpers/subghz_custom_event.h"
|
|
|
|
typedef struct SubghzTransmitter SubghzTransmitter;
|
|
|
|
typedef void (*SubghzTransmitterCallback)(SubghzCustomEvent event, void* context);
|
|
|
|
void subghz_transmitter_set_callback(
|
|
SubghzTransmitter* subghz_transmitter,
|
|
SubghzTransmitterCallback callback,
|
|
void* context);
|
|
|
|
SubghzTransmitter* subghz_transmitter_alloc();
|
|
|
|
void subghz_transmitter_free(SubghzTransmitter* subghz_transmitter);
|
|
|
|
View* subghz_transmitter_get_view(SubghzTransmitter* subghz_transmitter);
|
|
|
|
void subghz_transmitter_add_data_to_show(
|
|
SubghzTransmitter* subghz_transmitter,
|
|
const char* key_str,
|
|
const char* frequency_str,
|
|
const char* preset_str,
|
|
uint8_t show_button);
|