SubGhz: add protocol Somfy Telis RTS, Somfy Keytis RTS (#964)

* SubGhz: add 433.42 MHz  for Somfy
* SupGhz: add protocol Somfy Telis RTS, Somfy Keytis RTS

Co-authored-by: あく <alleteam@gmail.com>
This commit is contained in:
Skorpionm
2022-01-27 16:28:21 +04:00
committed by GitHub
parent e804015fea
commit cb0369a7f3
7 changed files with 770 additions and 5 deletions

View File

@@ -9,6 +9,7 @@ const char* const subghz_frequencies_text[] = {
"348.00",
"387.00",
"433.08",
"433.42",
"433.92",
"434.42",
"434.78",
@@ -29,6 +30,7 @@ const uint32_t subghz_frequencies[] = {
/* 387 - 464 */
387000000,
433075000, /* LPD433 first */
433420000,
433920000, /* LPD433 mid */
434420000,
434775000, /* LPD433 last channels */
@@ -51,7 +53,7 @@ const uint32_t subghz_hopper_frequencies[] = {
const uint32_t subghz_frequencies_count = sizeof(subghz_frequencies) / sizeof(uint32_t);
const uint32_t subghz_hopper_frequencies_count =
sizeof(subghz_hopper_frequencies) / sizeof(uint32_t);
const uint32_t subghz_frequencies_433_92 = 5;
const uint32_t subghz_frequencies_433_92 = 6;
bool subghz_custom_event_callback(void* context, uint32_t event) {
furi_assert(context);