| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- #include "../subghz_i.h"
- #include "../views/transmitter.h"
- #include <dolphin/dolphin.h>
- void subghz_scene_transmitter_callback(SubGhzCustomEvent event, void* context) {
- furi_assert(context);
- SubGhz* subghz = context;
- view_dispatcher_send_custom_event(subghz->view_dispatcher, event);
- }
- bool subghz_scene_transmitter_update_data_show(void* context) {
- SubGhz* subghz = context;
- bool ret = false;
- SubGhzProtocolDecoderBase* decoder = subghz_txrx_get_decoder(subghz->txrx);
- if(decoder) {
- FuriString* key_str = furi_string_alloc();
- FuriString* frequency_str = furi_string_alloc();
- FuriString* modulation_str = furi_string_alloc();
- if(subghz_protocol_decoder_base_deserialize(
- decoder, subghz_txrx_get_fff_data(subghz->txrx)) == SubGhzProtocolStatusOk) {
- subghz_protocol_decoder_base_get_string(decoder, key_str);
- subghz_txrx_get_frequency_and_modulation(subghz->txrx, frequency_str, modulation_str);
- subghz_view_transmitter_add_data_to_show(
- subghz->subghz_transmitter,
- furi_string_get_cstr(key_str),
- furi_string_get_cstr(frequency_str),
- furi_string_get_cstr(modulation_str),
- subghz_txrx_protocol_is_transmittable(subghz->txrx, false));
- ret = true;
- }
- furi_string_free(frequency_str);
- furi_string_free(modulation_str);
- furi_string_free(key_str);
- }
- return ret;
- }
- void subghz_scene_transmitter_on_enter(void* context) {
- SubGhz* subghz = context;
- if(!subghz_scene_transmitter_update_data_show(subghz)) {
- view_dispatcher_send_custom_event(
- subghz->view_dispatcher, SubGhzCustomEventViewTransmitterError);
- }
- subghz_view_transmitter_set_callback(
- subghz->subghz_transmitter, subghz_scene_transmitter_callback, subghz);
- subghz->state_notifications = SubGhzNotificationStateIDLE;
- view_dispatcher_switch_to_view(subghz->view_dispatcher, SubGhzViewIdTransmitter);
- }
- bool subghz_scene_transmitter_on_event(void* context, SceneManagerEvent event) {
- SubGhz* subghz = context;
- if(event.type == SceneManagerEventTypeCustom) {
- if(event.event == SubGhzCustomEventViewTransmitterSendStart) {
- subghz->state_notifications = SubGhzNotificationStateIDLE;
- if(subghz_tx_start(subghz, subghz_txrx_get_fff_data(subghz->txrx))) {
- subghz->state_notifications = SubGhzNotificationStateTx;
- subghz_scene_transmitter_update_data_show(subghz);
- DOLPHIN_DEED(DolphinDeedSubGhzSend);
- }
- return true;
- } else if(event.event == SubGhzCustomEventViewTransmitterSendStop) {
- subghz->state_notifications = SubGhzNotificationStateIDLE;
- subghz_txrx_stop(subghz->txrx);
- return true;
- } else if(event.event == SubGhzCustomEventViewTransmitterBack) {
- subghz->state_notifications = SubGhzNotificationStateIDLE;
- scene_manager_search_and_switch_to_previous_scene(
- subghz->scene_manager, SubGhzSceneStart);
- return true;
- } else if(event.event == SubGhzCustomEventViewTransmitterError) {
- furi_string_set(subghz->error_str, "Protocol not\nfound!");
- scene_manager_next_scene(subghz->scene_manager, SubGhzSceneShowErrorSub);
- }
- } else if(event.type == SceneManagerEventTypeTick) {
- if(subghz->state_notifications == SubGhzNotificationStateTx) {
- notification_message(subghz->notifications, &sequence_blink_magenta_10);
- }
- return true;
- }
- return false;
- }
- void subghz_scene_transmitter_on_exit(void* context) {
- SubGhz* subghz = context;
- subghz->state_notifications = SubGhzNotificationStateIDLE;
- }
|