mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-19 01:03:22 +00:00
d8fbaba7a0
* Init copy of oregon2 to weather station app * WS decoder * Reuse decoded data * Delete old protocol * Delete oregon2 unit test * Decrement count of random test Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
15 lines
No EOL
495 B
C
15 lines
No EOL
495 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,
|
|
&ws_protocol_acurite_606tx,
|
|
&ws_protocol_lacrosse_tx141thbv2,
|
|
&ws_protocol_oregon2,
|
|
};
|
|
|
|
const SubGhzProtocolRegistry weather_station_protocol_registry = {
|
|
.items = weather_station_protocol_registry_items,
|
|
.size = COUNT_OF(weather_station_protocol_registry_items)}; |