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,
|
2022-11-23 09:44:49 +00:00
|
|
|
&ws_protocol_gt_wt_02,
|
2022-10-19 17:27:26 +00:00
|
|
|
&ws_protocol_gt_wt_03,
|
2022-10-20 17:26:28 +00:00
|
|
|
&ws_protocol_acurite_606tx,
|
2022-11-08 17:07:55 +00:00
|
|
|
&ws_protocol_acurite_609txc,
|
2022-10-20 17:26:28 +00:00
|
|
|
&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-11-02 16:24:07 +00:00
|
|
|
&ws_protocol_ambient_weather,
|
2022-11-28 19:08:28 +00:00
|
|
|
&ws_protocol_auriol_th,
|
2022-12-14 08:27:55 +00:00
|
|
|
&ws_protocol_oregon_v1,
|
|
|
|
&ws_protocol_tx_8300,
|
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)};
|