c1bb10a694
* WS: add protocol Acurite-606TX * WS: history, added display of the channel (if any) in the general list * WS: added display of the button state if it is on the transmitter, and displaying the data that is in the signal * WS: fix batt info * WS: add protocol LaCrosse_TX141THBv2 * WS; fix syntax * Furi: bump api_symbols version Co-authored-by: あく <alleteam@gmail.com>
14 lines
469 B
C
14 lines
469 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,
|
|
};
|
|
|
|
const SubGhzProtocolRegistry weather_station_protocol_registry = {
|
|
.items = weather_station_protocol_registry_items,
|
|
.size = COUNT_OF(weather_station_protocol_registry_items)}; |