diff --git a/lib/subghz/protocols/honeywell.c b/lib/subghz/protocols/honeywell.c index 35a3cab5e..09cbaedfd 100644 --- a/lib/subghz/protocols/honeywell.c +++ b/lib/subghz/protocols/honeywell.c @@ -160,8 +160,8 @@ void subghz_protocol_decoder_honeywell_get_string(void* context, FuriString* out furi_string_cat_printf( output, - "%s\r\n%dbit\r\n" - "Sn:%07lu Ch:%u Bat:%d Hb: %d\r\n" + "%s\r\n%dbit " + "Sn:%07lu\r\nCh:%u Bat:%d Hb: %d\r\n" "L1: %u, L2: %u, L3: %u, L4: %u\r\n", instance->generic.protocol_name, instance->generic.data_count_bit, diff --git a/lib/subghz/protocols/honeywell.h b/lib/subghz/protocols/honeywell.h index 20586b9b7..aae0817c9 100644 --- a/lib/subghz/protocols/honeywell.h +++ b/lib/subghz/protocols/honeywell.h @@ -10,7 +10,7 @@ #include #include -#define SUBGHZ_PROTOCOL_HONEYWELL_NAME "Honeywell" +#define SUBGHZ_PROTOCOL_HONEYWELL_NAME "Honeywell(Ad)" typedef struct SubGhzProtocolDecoderHoneywell SubGhzProtocolDecoderHoneywell; typedef struct SubGhzProtocolEncoderHoneywell SubGhzProtocolEncoderHoneywell; diff --git a/lib/subghz/protocols/protocol_items.c b/lib/subghz/protocols/protocol_items.c index 3678b5d05..ff63bf8da 100644 --- a/lib/subghz/protocols/protocol_items.c +++ b/lib/subghz/protocols/protocol_items.c @@ -31,6 +31,7 @@ const SubGhzProtocol* subghz_protocol_registry_items[] = { &subghz_protocol_bett, &subghz_protocol_doitrand, &subghz_protocol_phoenix_v2, + &subghz_protocol_honeywell, &subghz_protocol_honeywell_wdb, &subghz_protocol_magellan, &subghz_protocol_intertechno_v3, @@ -62,7 +63,6 @@ const SubGhzProtocol* subghz_protocol_registry_items[] = { &ws_protocol_auriol_ahfl, &subghz_protocol_pocsag, &tpms_protocol_schrader_gg4, - &subghz_protocol_honeywell, &subghz_protocol_bin_raw, };