├── .gitignore ├── README.md ├── Rtl_433_Plugin ├── ClassConst.cs ├── ClassDecimation.cs ├── ClassFormDevices.cs ├── ClassFormDevicesList.cs ├── ClassFormListMessages.cs ├── ClassFunctionsVirtualListView.cs ├── ClassGraphe.cs ├── ClassInterfaceWithRtl433.cs ├── ClassInterfaceWithRtl433_OptionsRtl433.cs ├── ClassUtils.cs ├── FormConsole.Designer.cs ├── FormConsole.cs ├── FormConsole.resx ├── FormDevices.Designer.cs ├── FormDevices.cs ├── FormDevices.resx ├── FormDevicesListMessages.Designer.cs ├── FormDevicesListMessages.cs ├── FormDevicesListMessages.resx ├── FormListDevices.Designer.cs ├── FormListDevices.cs ├── FormListDevices.resx ├── NativeMethods.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── DataSources │ │ ├── ClassInterfaceWithRtl433.datasource │ │ └── Rtl_433_Panel.datasource │ ├── Resources.Designer.cs │ └── Resources.resx ├── RTL_433_Panel_options.cs ├── Rtl_433_Panel.Designer.cs ├── Rtl_433_Panel.cs ├── Rtl_433_Panel.resx ├── Rtl_433_Panel_DisplayForms.cs ├── Rtl_433_Plugin.cs ├── Rtl_433_Processor.cs ├── SDRSharp.Rtl_433_Plugin.csproj ├── SDRSharp.Rtl_433_Plugin.sln ├── WavRecorder.cs ├── WaveDataChunk.cs ├── WaveFormatChunk.cs ├── WaveHeader.cs └── app.config ├── SDRSharp.sln ├── SDRSharpMini.sln └── install ├── Recordings ├── Model_ GT-WT03 Id_175_434037000_250000_02_03_2021 12 2 52 STEREO.wav ├── concateneCU8_433000000hz_250k_03_02_2025_17_1_58.wav ├── g001_433.92M_250k_STEREO.wav ├── g092_868M_2048k_STEREO.wav └── tech433_433.92M_250k.cu8 ├── archives ├── 1.5.4.4 │ ├── GraphLib.dll │ ├── SDRSharp.Rtl_433.dll │ └── rtl_433.dll ├── 1.5.5.0 │ ├── GraphLib.dll │ ├── SDRSharp.Rtl_433.dll │ └── rtl_433.dll ├── 1.5.6.0 │ ├── GraphLib.dll │ ├── SDRSharp.Rtl_433.dll │ └── rtl_433.dll ├── 1.5.6.1 framework 4.6 │ ├── GraphLib.dll │ ├── SDRSharp.Rtl_433.dll │ └── rtl_433.dll ├── 1.5.6.1 framework 4.8 │ ├── GraphLib.dll │ ├── SDRSharp.Rtl_433.dll │ └── rtl_433.dll ├── 1.5.6.2 │ ├── GraphLib.dll │ ├── SDRSharp.Rtl_433.dll │ └── rtl_433.dll ├── 1.5.6.3.zip ├── 1.5.6.4.zip ├── 1.5.7.0.zip ├── 1.5.8.0 x64.zip ├── 1.5.8.0 x86.zip ├── 1.5.8.3 x64.zip ├── 1.5.8.3_x86.zip ├── 1.5.8.4 x64.zip ├── 1.5.8.4 x86.zip ├── debug load plugin add only 3 messageBox │ ├── GraphLib.dll │ ├── SDRSharp.Rtl_433.dll │ └── rtl_433.dll ├── dll 1.5.4.0 for SDRSharp 1784 │ ├── GraphLib.dll │ ├── SDRSharp.Rtl_433.dll │ └── rtl_433.dll ├── dll_1.5.5.0_for_SDRSharp_1784 │ ├── GraphLib.dll │ ├── SDRSharp.Rtl_433.dll │ └── rtl_433.dll ├── install -V1.1.1.0 │ ├── GraphLib.dll │ ├── SDRSharp.Rtl_433.dll │ └── rtl_433.dll ├── install -V1.3.0.0 │ ├── GraphLib.dll │ ├── SDRSharp.Rtl_433.dll │ └── rtl_433.dll ├── install -V1.4.0.0 │ ├── GraphLib.dll │ ├── SDRSharp.Rtl_433.dll │ └── rtl_433.dll ├── install -V1.5.3.0 │ ├── GraphLib.dll │ ├── SDRSharp.Rtl_433.dll │ ├── dll 1.5.3.0 for SDRSharp 1732 │ │ └── SDRSharp.Rtl_433.dll │ ├── dll 1.5.3.0 for SDRSharp 1777 │ │ └── SDRSharp.Rtl_433.dll │ ├── dll 1.5.3.0 for SDRSharp 1784 │ │ └── SDRSharp.Rtl_433.dll │ └── rtl_433.dll ├── install -V1.5.3.1 │ ├── GraphLib.dll │ ├── SDRSharp.Rtl_433.dll │ └── rtl_433.dll └── install -V1.5.4.0 │ ├── GraphLib.dll │ ├── SDRSharp.Rtl_433.dll │ └── rtl_433.dll ├── last_x64.zip └── last_x86.zip /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/README.md -------------------------------------------------------------------------------- /Rtl_433_Plugin/ClassConst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/ClassConst.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/ClassDecimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/ClassDecimation.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/ClassFormDevices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/ClassFormDevices.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/ClassFormDevicesList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/ClassFormDevicesList.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/ClassFormListMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/ClassFormListMessages.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/ClassFunctionsVirtualListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/ClassFunctionsVirtualListView.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/ClassGraphe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/ClassGraphe.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/ClassInterfaceWithRtl433.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/ClassInterfaceWithRtl433.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/ClassInterfaceWithRtl433_OptionsRtl433.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/ClassInterfaceWithRtl433_OptionsRtl433.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/ClassUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/ClassUtils.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/FormConsole.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/FormConsole.Designer.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/FormConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/FormConsole.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/FormConsole.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/FormConsole.resx -------------------------------------------------------------------------------- /Rtl_433_Plugin/FormDevices.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/FormDevices.Designer.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/FormDevices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/FormDevices.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/FormDevices.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/FormDevices.resx -------------------------------------------------------------------------------- /Rtl_433_Plugin/FormDevicesListMessages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/FormDevicesListMessages.Designer.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/FormDevicesListMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/FormDevicesListMessages.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/FormDevicesListMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/FormDevicesListMessages.resx -------------------------------------------------------------------------------- /Rtl_433_Plugin/FormListDevices.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/FormListDevices.Designer.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/FormListDevices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/FormListDevices.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/FormListDevices.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/FormListDevices.resx -------------------------------------------------------------------------------- /Rtl_433_Plugin/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/NativeMethods.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/Properties/DataSources/ClassInterfaceWithRtl433.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/Properties/DataSources/ClassInterfaceWithRtl433.datasource -------------------------------------------------------------------------------- /Rtl_433_Plugin/Properties/DataSources/Rtl_433_Panel.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/Properties/DataSources/Rtl_433_Panel.datasource -------------------------------------------------------------------------------- /Rtl_433_Plugin/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/Properties/Resources.resx -------------------------------------------------------------------------------- /Rtl_433_Plugin/RTL_433_Panel_options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/RTL_433_Panel_options.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/Rtl_433_Panel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/Rtl_433_Panel.Designer.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/Rtl_433_Panel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/Rtl_433_Panel.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/Rtl_433_Panel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/Rtl_433_Panel.resx -------------------------------------------------------------------------------- /Rtl_433_Plugin/Rtl_433_Panel_DisplayForms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/Rtl_433_Panel_DisplayForms.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/Rtl_433_Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/Rtl_433_Plugin.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/Rtl_433_Processor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/Rtl_433_Processor.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/SDRSharp.Rtl_433_Plugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/SDRSharp.Rtl_433_Plugin.csproj -------------------------------------------------------------------------------- /Rtl_433_Plugin/SDRSharp.Rtl_433_Plugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/SDRSharp.Rtl_433_Plugin.sln -------------------------------------------------------------------------------- /Rtl_433_Plugin/WavRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/WavRecorder.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/WaveDataChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/WaveDataChunk.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/WaveFormatChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/WaveFormatChunk.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/WaveHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/WaveHeader.cs -------------------------------------------------------------------------------- /Rtl_433_Plugin/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/Rtl_433_Plugin/app.config -------------------------------------------------------------------------------- /SDRSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/SDRSharp.sln -------------------------------------------------------------------------------- /SDRSharpMini.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/SDRSharpMini.sln -------------------------------------------------------------------------------- /install/Recordings/Model_ GT-WT03 Id_175_434037000_250000_02_03_2021 12 2 52 STEREO.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/Recordings/Model_ GT-WT03 Id_175_434037000_250000_02_03_2021 12 2 52 STEREO.wav -------------------------------------------------------------------------------- /install/Recordings/concateneCU8_433000000hz_250k_03_02_2025_17_1_58.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/Recordings/concateneCU8_433000000hz_250k_03_02_2025_17_1_58.wav -------------------------------------------------------------------------------- /install/Recordings/g001_433.92M_250k_STEREO.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/Recordings/g001_433.92M_250k_STEREO.wav -------------------------------------------------------------------------------- /install/Recordings/g092_868M_2048k_STEREO.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/Recordings/g092_868M_2048k_STEREO.wav -------------------------------------------------------------------------------- /install/Recordings/tech433_433.92M_250k.cu8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/Recordings/tech433_433.92M_250k.cu8 -------------------------------------------------------------------------------- /install/archives/1.5.4.4/GraphLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.4.4/GraphLib.dll -------------------------------------------------------------------------------- /install/archives/1.5.4.4/SDRSharp.Rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.4.4/SDRSharp.Rtl_433.dll -------------------------------------------------------------------------------- /install/archives/1.5.4.4/rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.4.4/rtl_433.dll -------------------------------------------------------------------------------- /install/archives/1.5.5.0/GraphLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.5.0/GraphLib.dll -------------------------------------------------------------------------------- /install/archives/1.5.5.0/SDRSharp.Rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.5.0/SDRSharp.Rtl_433.dll -------------------------------------------------------------------------------- /install/archives/1.5.5.0/rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.5.0/rtl_433.dll -------------------------------------------------------------------------------- /install/archives/1.5.6.0/GraphLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.6.0/GraphLib.dll -------------------------------------------------------------------------------- /install/archives/1.5.6.0/SDRSharp.Rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.6.0/SDRSharp.Rtl_433.dll -------------------------------------------------------------------------------- /install/archives/1.5.6.0/rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.6.0/rtl_433.dll -------------------------------------------------------------------------------- /install/archives/1.5.6.1 framework 4.6/GraphLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.6.1 framework 4.6/GraphLib.dll -------------------------------------------------------------------------------- /install/archives/1.5.6.1 framework 4.6/SDRSharp.Rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.6.1 framework 4.6/SDRSharp.Rtl_433.dll -------------------------------------------------------------------------------- /install/archives/1.5.6.1 framework 4.6/rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.6.1 framework 4.6/rtl_433.dll -------------------------------------------------------------------------------- /install/archives/1.5.6.1 framework 4.8/GraphLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.6.1 framework 4.8/GraphLib.dll -------------------------------------------------------------------------------- /install/archives/1.5.6.1 framework 4.8/SDRSharp.Rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.6.1 framework 4.8/SDRSharp.Rtl_433.dll -------------------------------------------------------------------------------- /install/archives/1.5.6.1 framework 4.8/rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.6.1 framework 4.8/rtl_433.dll -------------------------------------------------------------------------------- /install/archives/1.5.6.2/GraphLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.6.2/GraphLib.dll -------------------------------------------------------------------------------- /install/archives/1.5.6.2/SDRSharp.Rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.6.2/SDRSharp.Rtl_433.dll -------------------------------------------------------------------------------- /install/archives/1.5.6.2/rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.6.2/rtl_433.dll -------------------------------------------------------------------------------- /install/archives/1.5.6.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.6.3.zip -------------------------------------------------------------------------------- /install/archives/1.5.6.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.6.4.zip -------------------------------------------------------------------------------- /install/archives/1.5.7.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.7.0.zip -------------------------------------------------------------------------------- /install/archives/1.5.8.0 x64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.8.0 x64.zip -------------------------------------------------------------------------------- /install/archives/1.5.8.0 x86.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.8.0 x86.zip -------------------------------------------------------------------------------- /install/archives/1.5.8.3 x64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.8.3 x64.zip -------------------------------------------------------------------------------- /install/archives/1.5.8.3_x86.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.8.3_x86.zip -------------------------------------------------------------------------------- /install/archives/1.5.8.4 x64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.8.4 x64.zip -------------------------------------------------------------------------------- /install/archives/1.5.8.4 x86.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/1.5.8.4 x86.zip -------------------------------------------------------------------------------- /install/archives/debug load plugin add only 3 messageBox/GraphLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/debug load plugin add only 3 messageBox/GraphLib.dll -------------------------------------------------------------------------------- /install/archives/debug load plugin add only 3 messageBox/SDRSharp.Rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/debug load plugin add only 3 messageBox/SDRSharp.Rtl_433.dll -------------------------------------------------------------------------------- /install/archives/debug load plugin add only 3 messageBox/rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/debug load plugin add only 3 messageBox/rtl_433.dll -------------------------------------------------------------------------------- /install/archives/dll 1.5.4.0 for SDRSharp 1784/GraphLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/dll 1.5.4.0 for SDRSharp 1784/GraphLib.dll -------------------------------------------------------------------------------- /install/archives/dll 1.5.4.0 for SDRSharp 1784/SDRSharp.Rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/dll 1.5.4.0 for SDRSharp 1784/SDRSharp.Rtl_433.dll -------------------------------------------------------------------------------- /install/archives/dll 1.5.4.0 for SDRSharp 1784/rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/dll 1.5.4.0 for SDRSharp 1784/rtl_433.dll -------------------------------------------------------------------------------- /install/archives/dll_1.5.5.0_for_SDRSharp_1784/GraphLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/dll_1.5.5.0_for_SDRSharp_1784/GraphLib.dll -------------------------------------------------------------------------------- /install/archives/dll_1.5.5.0_for_SDRSharp_1784/SDRSharp.Rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/dll_1.5.5.0_for_SDRSharp_1784/SDRSharp.Rtl_433.dll -------------------------------------------------------------------------------- /install/archives/dll_1.5.5.0_for_SDRSharp_1784/rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/dll_1.5.5.0_for_SDRSharp_1784/rtl_433.dll -------------------------------------------------------------------------------- /install/archives/install -V1.1.1.0/GraphLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/install -V1.1.1.0/GraphLib.dll -------------------------------------------------------------------------------- /install/archives/install -V1.1.1.0/SDRSharp.Rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/install -V1.1.1.0/SDRSharp.Rtl_433.dll -------------------------------------------------------------------------------- /install/archives/install -V1.1.1.0/rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/install -V1.1.1.0/rtl_433.dll -------------------------------------------------------------------------------- /install/archives/install -V1.3.0.0/GraphLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/install -V1.3.0.0/GraphLib.dll -------------------------------------------------------------------------------- /install/archives/install -V1.3.0.0/SDRSharp.Rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/install -V1.3.0.0/SDRSharp.Rtl_433.dll -------------------------------------------------------------------------------- /install/archives/install -V1.3.0.0/rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/install -V1.3.0.0/rtl_433.dll -------------------------------------------------------------------------------- /install/archives/install -V1.4.0.0/GraphLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/install -V1.4.0.0/GraphLib.dll -------------------------------------------------------------------------------- /install/archives/install -V1.4.0.0/SDRSharp.Rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/install -V1.4.0.0/SDRSharp.Rtl_433.dll -------------------------------------------------------------------------------- /install/archives/install -V1.4.0.0/rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/install -V1.4.0.0/rtl_433.dll -------------------------------------------------------------------------------- /install/archives/install -V1.5.3.0/GraphLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/install -V1.5.3.0/GraphLib.dll -------------------------------------------------------------------------------- /install/archives/install -V1.5.3.0/SDRSharp.Rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/install -V1.5.3.0/SDRSharp.Rtl_433.dll -------------------------------------------------------------------------------- /install/archives/install -V1.5.3.0/dll 1.5.3.0 for SDRSharp 1732/SDRSharp.Rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/install -V1.5.3.0/dll 1.5.3.0 for SDRSharp 1732/SDRSharp.Rtl_433.dll -------------------------------------------------------------------------------- /install/archives/install -V1.5.3.0/dll 1.5.3.0 for SDRSharp 1777/SDRSharp.Rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/install -V1.5.3.0/dll 1.5.3.0 for SDRSharp 1777/SDRSharp.Rtl_433.dll -------------------------------------------------------------------------------- /install/archives/install -V1.5.3.0/dll 1.5.3.0 for SDRSharp 1784/SDRSharp.Rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/install -V1.5.3.0/dll 1.5.3.0 for SDRSharp 1784/SDRSharp.Rtl_433.dll -------------------------------------------------------------------------------- /install/archives/install -V1.5.3.0/rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/install -V1.5.3.0/rtl_433.dll -------------------------------------------------------------------------------- /install/archives/install -V1.5.3.1/GraphLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/install -V1.5.3.1/GraphLib.dll -------------------------------------------------------------------------------- /install/archives/install -V1.5.3.1/SDRSharp.Rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/install -V1.5.3.1/SDRSharp.Rtl_433.dll -------------------------------------------------------------------------------- /install/archives/install -V1.5.3.1/rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/install -V1.5.3.1/rtl_433.dll -------------------------------------------------------------------------------- /install/archives/install -V1.5.4.0/GraphLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/install -V1.5.4.0/GraphLib.dll -------------------------------------------------------------------------------- /install/archives/install -V1.5.4.0/SDRSharp.Rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/install -V1.5.4.0/SDRSharp.Rtl_433.dll -------------------------------------------------------------------------------- /install/archives/install -V1.5.4.0/rtl_433.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/archives/install -V1.5.4.0/rtl_433.dll -------------------------------------------------------------------------------- /install/last_x64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/last_x64.zip -------------------------------------------------------------------------------- /install/last_x86.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco402/plugin-Rtl433-for-SdrSharp/HEAD/install/last_x86.zip --------------------------------------------------------------------------------