protocol_items.c 822 B

1234567891011121314151617181920212223242526
  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_02,
  7. &ws_protocol_gt_wt_03,
  8. &ws_protocol_acurite_606tx,
  9. &ws_protocol_acurite_609txc,
  10. &ws_protocol_lacrosse_tx,
  11. &ws_protocol_lacrosse_tx141thbv2,
  12. &ws_protocol_oregon2,
  13. &ws_protocol_oregon3,
  14. &ws_protocol_acurite_592txr,
  15. &ws_protocol_ambient_weather,
  16. &ws_protocol_auriol_th,
  17. &ws_protocol_oregon_v1,
  18. &ws_protocol_tx_8300,
  19. &ws_protocol_wendox_w6726,
  20. &ws_protocol_auriol_ahfl,
  21. };
  22. const SubGhzProtocolRegistry weather_station_protocol_registry = {
  23. .items = weather_station_protocol_registry_items,
  24. .size = COUNT_OF(weather_station_protocol_registry_items)};