2021-06-29 21:19:20 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "subghz_protocol_common.h"
|
|
|
|
|
|
|
|
typedef struct SubGhzProtocolNiceFlorS SubGhzProtocolNiceFlorS;
|
|
|
|
|
2021-07-02 13:25:49 +00:00
|
|
|
/** Allocate SubGhzProtocolNiceFlorS
|
|
|
|
*
|
|
|
|
* @return SubGhzProtocolNiceFlorS*
|
|
|
|
*/
|
2021-06-29 21:19:20 +00:00
|
|
|
SubGhzProtocolNiceFlorS* subghz_protocol_nice_flor_s_alloc();
|
|
|
|
|
2021-07-02 13:25:49 +00:00
|
|
|
/** Free SubGhzProtocolNiceFlorS
|
|
|
|
*
|
|
|
|
* @param instance
|
|
|
|
*/
|
2021-06-29 21:19:20 +00:00
|
|
|
void subghz_protocol_nice_flor_s_free(SubGhzProtocolNiceFlorS* instance);
|
|
|
|
|
2021-07-02 13:25:49 +00:00
|
|
|
/** File name rainbow table Nice Flor-S
|
|
|
|
*
|
|
|
|
* @param instance - SubGhzProtocolNiceFlorS instance
|
|
|
|
* @param file_name - "path/file_name"
|
|
|
|
*/
|
|
|
|
void subghz_protocol_nice_flor_s_name_file(SubGhzProtocolNiceFlorS* instance, const char* name);
|
2021-06-29 21:19:20 +00:00
|
|
|
|
2021-07-02 13:25:49 +00:00
|
|
|
/** Sends the key on the air
|
|
|
|
*
|
|
|
|
* @param instance - SubGhzProtocolNiceFlorS instance
|
|
|
|
* @param key - key send
|
|
|
|
* @param bit - count bit key
|
|
|
|
* @param repeat - repeat send key
|
|
|
|
*/
|
2021-06-29 21:19:20 +00:00
|
|
|
void subghz_protocol_nice_flor_s_send_key(SubGhzProtocolNiceFlorS* instance, uint64_t key, uint8_t bit, uint8_t repeat);
|
|
|
|
|
2021-07-07 19:49:45 +00:00
|
|
|
/** Reset internal state
|
|
|
|
* @param instance - SubGhzProtocolNiceFlorS instance
|
|
|
|
*/
|
|
|
|
void subghz_protocol_nice_flor_s_reset(SubGhzProtocolNiceFlorS* instance);
|
|
|
|
|
2021-07-02 13:25:49 +00:00
|
|
|
/** Parse accepted duration
|
|
|
|
*
|
|
|
|
* @param instance - SubGhzProtocolNiceFlorS instance
|
2021-07-07 19:49:45 +00:00
|
|
|
* @param data - LevelDuration level_duration
|
2021-07-02 13:25:49 +00:00
|
|
|
*/
|
2021-07-13 11:47:27 +00:00
|
|
|
void subghz_protocol_nice_flor_s_parse(SubGhzProtocolNiceFlorS* instance, bool level, uint32_t duration);
|
2021-07-02 13:25:49 +00:00
|
|
|
|
|
|
|
/** Outputting information from the parser
|
|
|
|
*
|
|
|
|
* @param instance - SubGhzProtocolNiceFlorS* instance
|
|
|
|
* @param output - output string
|
|
|
|
*/
|
|
|
|
void subghz_protocol_nice_flor_s_to_str(SubGhzProtocolNiceFlorS* instance, string_t output);
|