registry.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #pragma once
  2. #include "../types.h"
  3. #include "princeton.h"
  4. #include "keeloq.h"
  5. #include "star_line.h"
  6. #include "nice_flo.h"
  7. #include "came.h"
  8. #include "faac_slh.h"
  9. #include "nice_flor_s.h"
  10. #include "came_twee.h"
  11. #include "came_atomo.h"
  12. #include "nero_sketch.h"
  13. #include "ido.h"
  14. #include "kia.h"
  15. #include "hormann.h"
  16. #include "nero_radio.h"
  17. #include "somfy_telis.h"
  18. #include "somfy_keytis.h"
  19. #include "scher_khan.h"
  20. #include "gate_tx.h"
  21. #include "raw.h"
  22. #include "firefly.h"
  23. #include "secplus_v2.h"
  24. #include "secplus_v1.h"
  25. #include "megacode.h"
  26. /**
  27. * Registration by name SubGhzProtocol.
  28. * @param name Protocol name
  29. * @return SubGhzProtocol* pointer to a SubGhzProtocol instance
  30. */
  31. const SubGhzProtocol* subghz_protocol_registry_get_by_name(const char* name);
  32. /**
  33. * Registration protocol by index in array SubGhzProtocol.
  34. * @param index Protocol by index in array
  35. * @return SubGhzProtocol* pointer to a SubGhzProtocol instance
  36. */
  37. const SubGhzProtocol* subghz_protocol_registry_get_by_index(size_t index);
  38. /**
  39. * Getting the number of registered protocols.
  40. * @return Number of protocols
  41. */
  42. size_t subghz_protocol_registry_count();