2021-10-28 13:09:59 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "subghz_protocol_common.h"
|
|
|
|
|
|
|
|
typedef struct SubGhzProtocolHormann SubGhzProtocolHormann;
|
|
|
|
|
|
|
|
/** Allocate SubGhzProtocolHormann
|
|
|
|
*
|
|
|
|
* @return SubGhzProtocolHormann*
|
|
|
|
*/
|
|
|
|
SubGhzProtocolHormann* subghz_protocol_hormann_alloc();
|
|
|
|
|
|
|
|
/** Free SubGhzProtocolHormann
|
|
|
|
*
|
|
|
|
* @param instance
|
|
|
|
*/
|
|
|
|
void subghz_protocol_hormann_free(SubGhzProtocolHormann* instance);
|
|
|
|
|
|
|
|
/** Get upload protocol
|
|
|
|
*
|
|
|
|
* @param instance - SubGhzProtocolHormann instance
|
|
|
|
* @param encoder - SubGhzProtocolCommonEncoder encoder
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
bool subghz_protocol_hormann_send_key(
|
|
|
|
SubGhzProtocolHormann* instance,
|
|
|
|
SubGhzProtocolCommonEncoder* encoder);
|
|
|
|
|
|
|
|
/** Reset internal state
|
|
|
|
* @param instance - SubGhzProtocolHormann instance
|
|
|
|
*/
|
|
|
|
void subghz_protocol_hormann_reset(SubGhzProtocolHormann* instance);
|
|
|
|
|
|
|
|
/** Parse accepted duration
|
|
|
|
*
|
|
|
|
* @param instance - SubGhzProtocolHormann instance
|
|
|
|
* @param data - LevelDuration level_duration
|
|
|
|
*/
|
|
|
|
void subghz_protocol_hormann_parse(SubGhzProtocolHormann* instance, bool level, uint32_t duration);
|
|
|
|
|
|
|
|
/** Outputting information from the parser
|
|
|
|
*
|
|
|
|
* @param instance - SubGhzProtocolHormann* instance
|
|
|
|
* @param output - output string
|
|
|
|
*/
|
|
|
|
void subghz_protocol_hormann_to_str(SubGhzProtocolHormann* instance, string_t output);
|
|
|
|
|
2021-11-11 12:49:19 +00:00
|
|
|
/** Adding data to a file
|
2021-10-28 13:09:59 +00:00
|
|
|
*
|
|
|
|
* @param instance - SubGhzProtocolHormann instance
|
2021-11-11 12:49:19 +00:00
|
|
|
* @param flipper_file - FlipperFile
|
|
|
|
* @return bool
|
2021-10-28 13:09:59 +00:00
|
|
|
*/
|
2021-11-11 12:49:19 +00:00
|
|
|
bool subghz_protocol_hormann_to_save_file(
|
|
|
|
SubGhzProtocolHormann* instance,
|
|
|
|
FlipperFile* flipper_file);
|
2021-10-28 13:09:59 +00:00
|
|
|
|
|
|
|
/** Loading protocol from file
|
|
|
|
*
|
2021-11-11 12:49:19 +00:00
|
|
|
* @param flipper_file - FlipperFile
|
2021-10-28 13:09:59 +00:00
|
|
|
* @param instance - SubGhzProtocolHormann instance
|
|
|
|
* @param file_path - file path
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
bool subghz_protocol_hormann_to_load_protocol_from_file(
|
2021-11-11 12:49:19 +00:00
|
|
|
FlipperFile* flipper_file,
|
2021-10-28 13:09:59 +00:00
|
|
|
SubGhzProtocolHormann* instance,
|
|
|
|
const char* file_path);
|
|
|
|
|
|
|
|
/** Loading protocol from bin data
|
|
|
|
*
|
|
|
|
* @param instance - SubGhzProtocolHormann instance
|
|
|
|
* @param context - SubGhzProtocolCommonLoad context
|
|
|
|
*/
|
|
|
|
void subghz_decoder_hormann_to_load_protocol(SubGhzProtocolHormann* instance, void* context);
|