2022-10-19 21:27:26 +04:00
|
|
|
#include "protocol_items.h"
|
|
|
|
|
|
|
|
const SubGhzProtocol* weather_station_protocol_registry_items[] = {
|
|
|
|
&ws_protocol_infactory,
|
|
|
|
&ws_protocol_thermopro_tx4,
|
|
|
|
&ws_protocol_nexus_th,
|
2022-11-23 13:44:49 +04:00
|
|
|
&ws_protocol_gt_wt_02,
|
2022-10-19 21:27:26 +04:00
|
|
|
&ws_protocol_gt_wt_03,
|
2022-10-20 21:26:28 +04:00
|
|
|
&ws_protocol_acurite_606tx,
|
2022-11-08 09:07:55 -08:00
|
|
|
&ws_protocol_acurite_609txc,
|
2023-01-29 15:08:26 +04:00
|
|
|
&ws_protocol_lacrosse_tx,
|
2022-10-20 21:26:28 +04:00
|
|
|
&ws_protocol_lacrosse_tx141thbv2,
|
2022-10-22 17:50:26 +02:00
|
|
|
&ws_protocol_oregon2,
|
2022-10-26 18:56:54 +04:00
|
|
|
&ws_protocol_acurite_592txr,
|
2022-11-02 20:24:07 +04:00
|
|
|
&ws_protocol_ambient_weather,
|
2022-11-28 22:08:28 +03:00
|
|
|
&ws_protocol_auriol_th,
|
2022-12-14 12:27:55 +04:00
|
|
|
&ws_protocol_oregon_v1,
|
|
|
|
&ws_protocol_tx_8300,
|
2022-10-19 21:27:26 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
const SubGhzProtocolRegistry weather_station_protocol_registry = {
|
|
|
|
.items = weather_station_protocol_registry_items,
|
|
|
|
.size = COUNT_OF(weather_station_protocol_registry_items)};
|