From d0df56c65d1ebdc2b7e5321cf0675b3f48804ae6 Mon Sep 17 00:00:00 2001 From: Derek Jamison Date: Wed, 15 Feb 2023 16:30:38 -0500 Subject: [PATCH] Update README for subghz samples --- subghz/samples/README.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/subghz/samples/README.md b/subghz/samples/README.md index 7bb55e3..b896ad2 100644 --- a/subghz/samples/README.md +++ b/subghz/samples/README.md @@ -6,4 +6,17 @@ These are samples captured by various remotes I own. Check out my [YouTube videos](../../youtube/README.md#sub-ghz) for more information on how to use these files. -The file format is [documented](https://flipperdevices.github.io/flipperzero-firmware/md_docs_file_formats__sub_ghz_file_formats.html) on the flipperdevices github account. \ No newline at end of file + +## Understanding the data +- The file format is [documented](https://flipperdevices.github.io/flipperzero-firmware/md_docs_file_formats__sub_ghz_file_formats.html) on the flipperdevices github account. + +- There are two types of .sub files. + - Files where the protocol is known. + - Files where the protocol is unknown. + +- For unknown protocols, the "Filetype:" will be "Flipper SubGhz RAW File". + - You will see "RAW_Data:" lines. The positive numbers are the length of tones (in uS, which is 1/1000 millisecond.) The negative numbers are the length of the silences (in uS). + - You can interpret and create RAW files to send a different button; see these [videos](../../youtube/README.md#sub-ghz--hacking-sub-ghz-devices-read-raw). + +- For known protocols, the "Filetype:" will be the name of the protocol. Often for known protocols the file has a line called "Key:" with the data needed for transmitting the code. + - You can edit the "Key" data to send a different button; see these [videos](../../youtube/README.md#sub-ghz--hacking-sub-ghz-devices-read).