mirror of
https://github.com/merbanan/rtl_433.git
synced 2026-04-23 02:57:07 -04:00
138 lines
3.0 KiB
C
Executable File
138 lines
3.0 KiB
C
Executable File
#ifndef INCLUDE_RTL_433_DEVICES_H_
|
|
#define INCLUDE_RTL_433_DEVICES_H_
|
|
|
|
#include "bitbuffer.h"
|
|
|
|
#define DEVICES \
|
|
DECL(silvercrest) \
|
|
DECL(rubicson) \
|
|
DECL(prologue) \
|
|
DECL(waveman) \
|
|
DECL(steffen) \
|
|
DECL(elv_em1000) \
|
|
DECL(elv_ws2000) \
|
|
DECL(lacrossetx) \
|
|
DECL(template) \
|
|
DECL(acurite_rain_gauge) \
|
|
DECL(acurite_th) \
|
|
DECL(oregon_scientific) \
|
|
DECL(mebus433) \
|
|
DECL(intertechno) \
|
|
DECL(newkaku) \
|
|
DECL(alectov1) \
|
|
DECL(cardin) \
|
|
DECL(fineoffset_WH2) \
|
|
DECL(nexus) \
|
|
DECL(ambient_weather) \
|
|
DECL(calibeur_RF104) \
|
|
DECL(X10_RF) \
|
|
DECL(DSC) \
|
|
DECL(brennenstuhl_rcs_2044) \
|
|
DECL(gt_wt_02) \
|
|
DECL(danfoss_CFR) \
|
|
DECL(ec3k) \
|
|
DECL(valeo) \
|
|
DECL(chuango) \
|
|
DECL(generic_remote) \
|
|
DECL(tfa_twin_plus_303049) \
|
|
DECL(fineoffset_wh1080) \
|
|
DECL(wt450) \
|
|
DECL(lacrossews) \
|
|
DECL(esperanza_ews) \
|
|
DECL(efergy_e2_classic) \
|
|
DECL(kw9015b) \
|
|
DECL(generic_temperature_sensor) \
|
|
DECL(wg_pb12v1) \
|
|
DECL(acurite_txr) \
|
|
DECL(acurite_986) \
|
|
DECL(hideki_ts04) \
|
|
DECL(oil_watchman) \
|
|
DECL(current_cost) \
|
|
DECL(emontx) \
|
|
DECL(ht680) \
|
|
DECL(s3318p) \
|
|
DECL(akhan_100F14) \
|
|
DECL(quhwa) \
|
|
DECL(oregon_scientific_v1) \
|
|
DECL(proove) \
|
|
DECL(bresser_3ch) \
|
|
DECL(springfield) \
|
|
DECL(oregon_scientific_sl109h) \
|
|
DECL(acurite_606) \
|
|
DECL(tfa_pool_thermometer) \
|
|
DECL(kedsum) \
|
|
DECL(blyss) \
|
|
DECL(steelmate) \
|
|
DECL(schraeder) \
|
|
DECL(lightwave_rf) \
|
|
DECL(elro_db286a) \
|
|
DECL(efergy_optical) \
|
|
DECL(hondaremote) \
|
|
DECL(template) \
|
|
DECL(fineoffset_XC0400) \
|
|
DECL(radiohead_ask) \
|
|
DECL(kerui) \
|
|
DECL(fineoffset_wh1050) \
|
|
DECL(honeywell) \
|
|
DECL(maverick_et73x) \
|
|
DECL(rftech) \
|
|
DECL(lacrosse_TX141TH_Bv2) \
|
|
DECL(acurite_00275rm) \
|
|
DECL(lacrosse_tx35) \
|
|
DECL(lacrosse_tx29) \
|
|
DECL(vaillant_vrt340f) \
|
|
DECL(fineoffset_WH25) \
|
|
DECL(fineoffset_WH0530) \
|
|
DECL(ibis_beacon) \
|
|
DECL(oil_standard) \
|
|
DECL(tpms_citroen) \
|
|
DECL(oil_standard_ask) \
|
|
DECL(thermopro_tp11) \
|
|
DECL(solight_te44) \
|
|
DECL(smoke_gs558) \
|
|
DECL(generic_motion) \
|
|
DECL(tpms_toyota) \
|
|
DECL(tpms_ford) \
|
|
DECL(tpms_renault) \
|
|
DECL(infactory) \
|
|
DECL(ft004b) \
|
|
DECL(fordremote) \
|
|
DECL(philips) \
|
|
DECL(schrader_EG53MA4) \
|
|
DECL(nexa) \
|
|
DECL(thermopro_tp12) \
|
|
DECL(ge_coloreffects) \
|
|
DECL(x10_sec) \
|
|
DECL(interlogix) \
|
|
DECL(dish_remote_6_3) \
|
|
DECL(ss_sensor) \
|
|
DECL(sensible_living) \
|
|
DECL(m_bus_mode_c_t) \
|
|
DECL(m_bus_mode_s) \
|
|
DECL(m_bus_mode_r) \
|
|
DECL(m_bus_mode_f) \
|
|
DECL(wssensor) \
|
|
DECL(wt1024)
|
|
|
|
typedef struct {
|
|
unsigned protocol_num; // fixed sequence number, assigned in main()
|
|
char name[256];
|
|
unsigned int modulation;
|
|
float short_limit;
|
|
float long_limit;
|
|
float reset_limit;
|
|
float gap_limit;
|
|
float sync_width;
|
|
float tolerance;
|
|
int (*json_callback)(bitbuffer_t *bitbuffer);
|
|
unsigned int disabled;
|
|
unsigned demod_arg; // Decoder specific optional argument
|
|
char **fields; // List of fields this decoder produces; required for CSV output. NULL-terminated.
|
|
} r_device;
|
|
|
|
#define DECL(name) extern r_device name;
|
|
DEVICES
|
|
#undef DECL
|
|
|
|
#endif /* INCLUDE_RTL_433_DEVICES_H_ */
|