2022-10-19 17:27:26 +00: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 17:26:28 +00:00
|
|
|
&ws_protocol_acurite_606tx,
|
|
|
|
&ws_protocol_lacrosse_tx141thbv2,
|
2022-10-22 15:50:26 +00:00
|
|
|
&ws_protocol_oregon2,
|
2022-10-26 14:56:54 +00:00
|
|
|
&ws_protocol_acurite_592txr,
|
2022-10-19 17:27:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const SubGhzProtocolRegistry weather_station_protocol_registry = {
|
|
|
|
.items = weather_station_protocol_registry_items,
|
|
|
|
.size = COUNT_OF(weather_station_protocol_registry_items)};
|