Add restaurant pager (EV1527-variant) to SubGhzD (#2998)

* Add restaurant pager protocol to SubGhzD receiver

EV1527-variant 25-bit OOK PWM decoder for restaurant pager
systems (JianTao JT-913 and similar). Decodes system ID,
pager address, and function code (buzz/sync).

* Show friendly pager details in SubGhzD view
This commit is contained in:
Jeff Laflamme
2026-02-18 13:47:41 +07:00
committed by GitHub
parent 15df51f976
commit 819b4d0fed
4 changed files with 108 additions and 1 deletions
@@ -55,6 +55,7 @@ So include here the .hpp, and add a new element to the protos vector in the cons
#include "s-marantec24.hpp"
// GENIE FROM PR
#include "s-holtek_ht6p20b.hpp"
#include "s-restaurant_pager.hpp"
#ifndef __FPROTO_PROTOLISTSGZ_H__
#define __FPROTO_PROTOLISTSGZ_H__
@@ -109,6 +110,7 @@ class SubGhzDProtos : public FProtoListGeneral {
protos[FPS_GANGQI] = new FProtoSubGhzDGangqi();
protos[FPS_MARANTEC24] = new FProtoSubGhzDMarantec24();
protos[FPS_HOLTEKHT6P20B] = new FProtoSubGhzDHoltekHt6p20b();
protos[FPS_RESTAURANT_PAGER] = new FProtoSubGhzDRestaurantPager();
for (uint8_t i = 0; i < FPS_COUNT; ++i) {
if (protos[i] != NULL) protos[i]->setCallback(callbackTarget);