Skip to content

Commit

Permalink
hormann hsm static code btn decode fix??? [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
xMasterX committed Jul 8, 2024
1 parent 54192af commit b11f18c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/subghz/protocols/hormann.c
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ void subghz_protocol_decoder_hormann_feed(void* context, bool level, uint32_t du
* @param instance Pointer to a SubGhzBlockGeneric* instance
*/
static void subghz_protocol_hormann_check_remote_controller(SubGhzBlockGeneric* instance) {
instance->btn = (instance->data >> 4) & 0xF;
instance->btn = (instance->data >> 8) & 0xF;
}

uint8_t subghz_protocol_decoder_hormann_get_hash_data(void* context) {
Expand Down

0 comments on commit b11f18c

Please sign in to comment.