subghz_protocol_keeloq.h 661 B

1234567891011121314151617
  1. #pragma once
  2. #include "subghz_protocol_common.h"
  3. typedef struct SubGhzProtocolKeeloq SubGhzProtocolKeeloq;
  4. SubGhzProtocolKeeloq* subghz_protocol_keeloq_alloc();
  5. void subghz_protocol_keeloq_free(SubGhzProtocolKeeloq* instance);
  6. void subghz_protocol_keeloq_add_manafacture_key(SubGhzProtocolKeeloq* instance, const char* name, uint64_t key, uint16_t type);
  7. void subghz_protocol_keeloq_send_key(SubGhzProtocolKeeloq* instance, uint64_t key, uint8_t bit, uint8_t repeat);
  8. void subghz_protocol_keeloq_parse(SubGhzProtocolKeeloq* instance, LevelPair data);
  9. void subghz_protocol_keeloq_to_str(SubGhzProtocolKeeloq* instance, string_t output);