Skip to content

Commit

Permalink
subghz add manually fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
xMasterX committed Apr 10, 2024
1 parent b3151c5 commit 744ef81
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions applications/main/subghz/scenes/subghz_scene_set_type.c
Original file line number Diff line number Diff line change
Expand Up @@ -445,8 +445,8 @@ bool subghz_scene_set_type_on_event(void* context, SceneManagerEvent event) {
.type = GenKeeloq,
.mod = "FM476",
.freq = 434420000,
.keeloq.serial = key & 0x0FFFFFFF,
.keeloq.btn = 0x04,
.keeloq.serial = (key & 0x0000FFFF) | 0x07150000,
.keeloq.btn = 0x02,
.keeloq.cnt = 0x03,
.keeloq.manuf = "Sommer(fsk476)"};
break;
Expand All @@ -455,8 +455,8 @@ bool subghz_scene_set_type_on_event(void* context, SceneManagerEvent event) {
.type = GenKeeloq,
.mod = "FM476",
.freq = 868800000,
.keeloq.serial = key & 0x0FFFFFFF,
.keeloq.btn = 0x04,
.keeloq.serial = (key & 0x0000FFFF) | 0x07150000,
.keeloq.btn = 0x02,
.keeloq.cnt = 0x03,
.keeloq.manuf = "Sommer(fsk476)"};
break;
Expand Down

0 comments on commit 744ef81

Please sign in to comment.