2022-10-19 20:27:26 +03:00
|
|
|
#include "protocol_items.h"
|
|
|
|
|
|
|
|
const SubGhzProtocol* weather_station_protocol_registry_items[] = {
|
|
|
|
&ws_protocol_infactory,
|
|
|
|
&ws_protocol_thermopro_tx4,
|
|
|
|
&ws_protocol_nexus_th,
|
|
|
|
&ws_protocol_gt_wt_03,
|
2022-10-20 20:26:28 +03:00
|
|
|
&ws_protocol_acurite_606tx,
|
2022-11-08 20:07:55 +03:00
|
|
|
&ws_protocol_acurite_609txc,
|
2022-10-20 20:26:28 +03:00
|
|
|
&ws_protocol_lacrosse_tx141thbv2,
|
2022-10-22 18:50:26 +03:00
|
|
|
&ws_protocol_oregon2,
|
2022-10-26 17:56:54 +03:00
|
|
|
&ws_protocol_acurite_592txr,
|
2022-11-02 19:24:07 +03:00
|
|
|
&ws_protocol_ambient_weather,
|
2022-10-19 20:27:26 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
const SubGhzProtocolRegistry weather_station_protocol_registry = {
|
|
|
|
.items = weather_station_protocol_registry_items,
|
|
|
|
.size = COUNT_OF(weather_station_protocol_registry_items)};
|