protocol_items.c 882 B

123456789101112131415161718
  1. #include "protocol_items.h"
  2. const SubGhzProtocol* weather_station_protocol_registry_items[] = {
  3. &ws_protocol_infactory, &ws_protocol_thermopro_tx4,
  4. &ws_protocol_nexus_th, &ws_protocol_gt_wt_02,
  5. &ws_protocol_gt_wt_03, &ws_protocol_acurite_606tx,
  6. &ws_protocol_acurite_609txc, &ws_protocol_acurite_986,
  7. &ws_protocol_lacrosse_tx, &ws_protocol_lacrosse_tx141thbv2,
  8. &ws_protocol_oregon2, &ws_protocol_oregon3,
  9. &ws_protocol_acurite_592txr, &ws_protocol_ambient_weather,
  10. &ws_protocol_auriol_th, &ws_protocol_oregon_v1,
  11. &ws_protocol_tx_8300, &ws_protocol_wendox_w6726,
  12. &ws_protocol_auriol_ahfl, &ws_protocol_kedsum_th,
  13. };
  14. const SubGhzProtocolRegistry weather_station_protocol_registry = {
  15. .items = weather_station_protocol_registry_items,
  16. .size = COUNT_OF(weather_station_protocol_registry_items)};