mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-18 08:43:10 +00:00
84d12da45a
OFW PR 1833 by Skorpionm
12 lines
No EOL
399 B
C
12 lines
No EOL
399 B
C
#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,
|
|
};
|
|
|
|
const SubGhzProtocolRegistry weather_station_protocol_registry = {
|
|
.items = weather_station_protocol_registry_items,
|
|
.size = COUNT_OF(weather_station_protocol_registry_items)}; |