protocol_items.c 469 B

1234567891011121314
  1. #include "protocol_items.h"
  2. const SubGhzProtocol* weather_station_protocol_registry_items[] = {
  3. &ws_protocol_infactory,
  4. &ws_protocol_thermopro_tx4,
  5. &ws_protocol_nexus_th,
  6. &ws_protocol_gt_wt_03,
  7. &ws_protocol_acurite_606tx,
  8. &ws_protocol_lacrosse_tx141thbv2,
  9. };
  10. const SubGhzProtocolRegistry weather_station_protocol_registry = {
  11. .items = weather_station_protocol_registry_items,
  12. .size = COUNT_OF(weather_station_protocol_registry_items)};