2021-06-30 00:19:20 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "subghz_protocol_common.h"
|
|
|
|
|
|
|
|
typedef struct SubGhzProtocolNiceFlorS SubGhzProtocolNiceFlorS;
|
|
|
|
|
2021-07-02 16:25:49 +03:00
|
|
|
/** Allocate SubGhzProtocolNiceFlorS
|
|
|
|
*
|
|
|
|
* @return SubGhzProtocolNiceFlorS*
|
|
|
|
*/
|
2021-06-30 00:19:20 +03:00
|
|
|
SubGhzProtocolNiceFlorS* subghz_protocol_nice_flor_s_alloc();
|
|
|
|
|
2021-07-02 16:25:49 +03:00
|
|
|
/** Free SubGhzProtocolNiceFlorS
|
|
|
|
*
|
|
|
|
* @param instance
|
|
|
|
*/
|
2021-06-30 00:19:20 +03:00
|
|
|
void subghz_protocol_nice_flor_s_free(SubGhzProtocolNiceFlorS* instance);
|
|
|
|
|
2021-07-02 16:25:49 +03: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-30 00:19:20 +03:00
|
|
|
|
2021-07-02 16:25:49 +03: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-30 00:19:20 +03:00
|
|
|
void subghz_protocol_nice_flor_s_send_key(SubGhzProtocolNiceFlorS* instance, uint64_t key, uint8_t bit, uint8_t repeat);
|
|
|
|
|
2021-07-07 22:49:45 +03:00
|
|
|
/** Reset internal state
|
|
|
|
* @param instance - SubGhzProtocolNiceFlorS instance
|
|
|
|
*/
|
|
|
|
void subghz_protocol_nice_flor_s_reset(SubGhzProtocolNiceFlorS* instance);
|
|
|
|
|
2021-07-02 16:25:49 +03:00
|
|
|
/** Parse accepted duration
|
|
|
|
*
|
|
|
|
* @param instance - SubGhzProtocolNiceFlorS instance
|
2021-07-07 22:49:45 +03:00
|
|
|
* @param data - LevelDuration level_duration
|
2021-07-02 16:25:49 +03:00
|
|
|
*/
|
2021-07-13 14:47:27 +03:00
|
|
|
void subghz_protocol_nice_flor_s_parse(SubGhzProtocolNiceFlorS* instance, bool level, uint32_t duration);
|
2021-07-02 16:25:49 +03: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);
|