2022-03-03 09:48:56 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "../types.h"
|
|
|
|
|
2022-04-14 12:49:29 +00:00
|
|
|
#include "princeton.h"
|
|
|
|
#include "keeloq.h"
|
|
|
|
#include "star_line.h"
|
|
|
|
#include "nice_flo.h"
|
|
|
|
#include "came.h"
|
|
|
|
#include "faac_slh.h"
|
|
|
|
#include "nice_flor_s.h"
|
|
|
|
#include "came_twee.h"
|
|
|
|
#include "came_atomo.h"
|
|
|
|
#include "nero_sketch.h"
|
|
|
|
#include "ido.h"
|
|
|
|
#include "kia.h"
|
|
|
|
#include "hormann.h"
|
|
|
|
#include "nero_radio.h"
|
|
|
|
#include "somfy_telis.h"
|
|
|
|
#include "somfy_keytis.h"
|
|
|
|
#include "scher_khan.h"
|
|
|
|
#include "gate_tx.h"
|
|
|
|
#include "raw.h"
|
2022-06-01 12:17:21 +00:00
|
|
|
#include "linear.h"
|
2022-05-04 22:44:15 +00:00
|
|
|
#include "secplus_v2.h"
|
2022-05-05 13:42:50 +00:00
|
|
|
#include "secplus_v1.h"
|
2022-05-08 17:50:20 +00:00
|
|
|
#include "megacode.h"
|
2022-05-10 18:11:16 +00:00
|
|
|
#include "holtek.h"
|
2022-06-01 12:17:21 +00:00
|
|
|
#include "chamberlain_code.h"
|
2022-06-22 15:18:52 +00:00
|
|
|
#include "power_smart.h"
|
2022-08-07 15:56:45 +00:00
|
|
|
#include "marantec.h"
|
|
|
|
#include "bett.h"
|
|
|
|
#include "doitrand.h"
|
|
|
|
#include "phoenix_v2.h"
|
2022-04-14 12:49:29 +00:00
|
|
|
|
2022-03-16 09:18:48 +00:00
|
|
|
/**
|
|
|
|
* Registration by name SubGhzProtocol.
|
|
|
|
* @param name Protocol name
|
|
|
|
* @return SubGhzProtocol* pointer to a SubGhzProtocol instance
|
|
|
|
*/
|
2022-03-03 09:48:56 +00:00
|
|
|
const SubGhzProtocol* subghz_protocol_registry_get_by_name(const char* name);
|
|
|
|
|
2022-03-16 09:18:48 +00:00
|
|
|
/**
|
|
|
|
* Registration protocol by index in array SubGhzProtocol.
|
|
|
|
* @param index Protocol by index in array
|
|
|
|
* @return SubGhzProtocol* pointer to a SubGhzProtocol instance
|
|
|
|
*/
|
2022-03-03 09:48:56 +00:00
|
|
|
const SubGhzProtocol* subghz_protocol_registry_get_by_index(size_t index);
|
|
|
|
|
2022-03-16 09:18:48 +00:00
|
|
|
/**
|
|
|
|
* Getting the number of registered protocols.
|
|
|
|
* @return Number of protocols
|
|
|
|
*/
|
2022-03-03 09:48:56 +00:00
|
|
|
size_t subghz_protocol_registry_count();
|