Updated readme and about text.

This commit is contained in:
Derek Jamison 2023-10-03 16:54:55 -05:00
parent b6482bfdfd
commit 1569680800
3 changed files with 14 additions and 1 deletions

View File

@ -2,6 +2,7 @@
The Flipper Zero "Sub-GHz" radio is used for receiving and transmitting frequencies below the 1GHz (1000MHz) range. In particular, the firmware supports 300-348 MHz, 387-464 MHz, and 779-928 MHz operational bands. Depending on your region there may be additional [restrictions](https://docs.flipperzero.one/sub-ghz/frequencies). The Flipper Zero "Sub-GHz" radio is used for receiving and transmitting frequencies below the 1GHz (1000MHz) range. In particular, the firmware supports 300-348 MHz, 387-464 MHz, and 779-928 MHz operational bands. Depending on your region there may be additional [restrictions](https://docs.flipperzero.one/sub-ghz/frequencies).
This enlistment contains the following: This enlistment contains the following:
- [Apps](./apps) are applications that utilize the subghz radio.
- [Plugins](./plugins/README.md) are applications & games that can be added to the Flipper Zero. These applications utilize the subghz radio. - [Plugins](./plugins/README.md) are applications & games that can be added to the Flipper Zero. These applications utilize the subghz radio.
- [Protocols](./protocols/README.md) extend the Sub-GHz "Read" feature of your Flipper with the ability to support new protocols. - [Protocols](./protocols/README.md) extend the Sub-GHz "Read" feature of your Flipper with the ability to support new protocols.
- [Samples](./samples/README.md) are samples captured by various remotes I own. - [Samples](./samples/README.md) are samples captured by various remotes I own.

View File

@ -16,6 +16,7 @@ WARNING -- This could desync your remote from the receiver.
WARNING -- Don't run this near your garage. There is no reason to open the physical garage door & you will likely burn out the motor. WARNING -- Don't run this near your garage. There is no reason to open the physical garage door & you will likely burn out the motor.
## Running ## Running
- Step 0. Copy [these files](https://github.com/jamisonderek/flipper-zero-tutorials/tree/main/subghz/apps/genie-recorder) into your firmware ``applications_user\genie-recorder`` folder.
- Step 1. Build your firmware. You will get a build error. - Step 1. Build your firmware. You will get a build error.
- Step 2. Edit your ``firmware\targets\f7\api_symbols.csv`` file so that storage_file_sync is public. - Step 2. Edit your ``firmware\targets\f7\api_symbols.csv`` file so that storage_file_sync is public.
``Function,+,storage_file_sync,_Bool,File*`` ``Function,+,storage_file_sync,_Bool,File*``

View File

@ -223,7 +223,18 @@ GenieApp* genie_app_alloc() {
0, 0,
128, 128,
64, 64,
"Genie garage door recorder.\n---\nConnect door to pin A7!\n\nauthor: @codeallnight\nhttps://discord.com/invite/NsjCvqwPAd\nhttps://youtube.com/@MrDerekJamison"); "Genie garage door recorder.\n---\n"
"This app clicks your remote\n"
"and records the keys, so you\n"
"can replay them later.\n"
"Connect your remote to pin\n"
"A7 and GND. Wiring diagram\n"
"at https://tinyurl.com/genierecorder or github.\n"
"Once connected run Start!\n---\n"
"author: @codeallnight\n"
"https://discord.com/invite/NsjCvqwPAd\n"
"https://youtube.com/@MrDerekJamison\n"
"https://github.com/jamisonderek/flipper-zero-tutorials");
view_set_previous_callback( view_set_previous_callback(
widget_get_view(app->widget_about), genie_navigation_submenu_callback); widget_get_view(app->widget_about), genie_navigation_submenu_callback);
view_dispatcher_add_view( view_dispatcher_add_view(