feat(subghz): added Solight TE44 recognition (#183)

* feat(subghz): added Solight TE44 recognition

Added the Solight TE44 weather station, with a protocol similar to Auriol HG06061A but with a checksum and different sync values.
Updated the tests as well, including a raw and a decoded capture.

* Lint fixes

* Update changelog

---------

Co-authored-by: Willy-JL <49810075+Willy-JL@users.noreply.github.com>
This commit is contained in:
m7i-org
2024-08-21 20:46:08 -04:00
committed by GitHub
parent 788c517f7d
commit ff0e885fba
8 changed files with 374 additions and 0 deletions

View File

@@ -670,6 +670,13 @@ MU_TEST(subghz_decoder_dickert_test) {
"Test decoder " SUBGHZ_PROTOCOL_DICKERT_MAHS_NAME " error\r\n");
}
MU_TEST(subghz_decoder_solight_te44_test) {
mu_assert(
subghz_decoder_test(
EXT_PATH("unit_tests/subghz/solight_te44_raw.sub"), WS_PROTOCOL_SOLIGHT_TE44_NAME),
"Test decoder " WS_PROTOCOL_SOLIGHT_TE44_NAME " error\r\n");
}
//test encoders
MU_TEST(subghz_encoder_princeton_test) {
mu_assert(
@@ -892,6 +899,7 @@ MU_TEST_SUITE(subghz) {
MU_RUN_TEST(subghz_decoder_kinggates_stylo4k_test);
MU_RUN_TEST(subghz_decoder_mastercode_test);
MU_RUN_TEST(subghz_decoder_dickert_test);
MU_RUN_TEST(subghz_decoder_solight_te44_test);
MU_RUN_TEST(subghz_encoder_princeton_test);
MU_RUN_TEST(subghz_encoder_came_test);