2022-07-29 16:22:17 +00:00
|
|
|
## How to add new SubGHz frequencies
|
|
|
|
|
2023-02-16 21:14:16 +00:00
|
|
|
#### CC1101 Frequency range specs: 300-348 MHz, 386-464 MHz, and 778-928 MHz (+ 350MHz and 467MHz was added to default range)
|
2022-07-29 16:22:17 +00:00
|
|
|
|
2023-03-12 12:32:47 +00:00
|
|
|
Edit user settings file located on your microSD card - `subghz/assets/setting_user` (remove .example from name to use config)
|
2022-07-29 16:22:17 +00:00
|
|
|
|
|
|
|
in this file you will find we already have extra frequencies added
|
2022-10-19 22:07:01 +00:00
|
|
|
if you need your custom one, make sure it doesn't listed here
|
2022-07-29 16:22:17 +00:00
|
|
|
|
|
|
|
### Default frequency list
|
|
|
|
```
|
|
|
|
/* 300 - 348 */
|
|
|
|
300000000,
|
2023-01-03 15:40:03 +00:00
|
|
|
302757000,
|
2022-07-29 16:22:17 +00:00
|
|
|
303875000,
|
|
|
|
304250000,
|
2023-01-03 15:40:03 +00:00
|
|
|
307000000,
|
|
|
|
307500000,
|
|
|
|
307800000,
|
|
|
|
309000000,
|
2022-07-29 16:22:17 +00:00
|
|
|
310000000,
|
2023-01-03 15:40:03 +00:00
|
|
|
312000000,
|
|
|
|
312100000,
|
|
|
|
312200000,
|
|
|
|
313000000,
|
|
|
|
313850000,
|
|
|
|
314000000,
|
|
|
|
314350000,
|
|
|
|
314980000,
|
2022-07-29 16:22:17 +00:00
|
|
|
315000000,
|
|
|
|
318000000,
|
2023-01-03 15:40:03 +00:00
|
|
|
330000000,
|
|
|
|
345000000,
|
|
|
|
348000000,
|
|
|
|
350000000,
|
2022-07-29 16:22:17 +00:00
|
|
|
|
|
|
|
/* 387 - 464 */
|
2023-01-03 15:40:03 +00:00
|
|
|
387000000,
|
2022-07-29 16:22:17 +00:00
|
|
|
390000000,
|
|
|
|
418000000,
|
|
|
|
433075000, /* LPD433 first */
|
2023-01-03 15:40:03 +00:00
|
|
|
433220000,
|
2022-07-29 16:22:17 +00:00
|
|
|
433420000,
|
2023-01-03 15:40:03 +00:00
|
|
|
433657070,
|
|
|
|
433889000,
|
|
|
|
433920000 | FREQUENCY_FLAG_DEFAULT, /* LPD433 mid */
|
|
|
|
434075000,
|
|
|
|
434176948,
|
|
|
|
434190000,
|
|
|
|
434390000,
|
2022-07-29 16:22:17 +00:00
|
|
|
434420000,
|
2023-01-03 15:40:03 +00:00
|
|
|
434620000,
|
2022-07-29 16:22:17 +00:00
|
|
|
434775000, /* LPD433 last channels */
|
|
|
|
438900000,
|
2023-01-03 15:40:03 +00:00
|
|
|
440175000,
|
|
|
|
464000000,
|
2023-02-16 21:14:16 +00:00
|
|
|
467750000,
|
2022-07-29 16:22:17 +00:00
|
|
|
|
|
|
|
/* 779 - 928 */
|
2023-01-03 15:40:03 +00:00
|
|
|
779000000,
|
2022-07-29 16:22:17 +00:00
|
|
|
868350000,
|
2023-01-03 15:40:03 +00:00
|
|
|
868400000,
|
|
|
|
868800000,
|
|
|
|
868950000,
|
|
|
|
906400000,
|
2022-07-29 16:22:17 +00:00
|
|
|
915000000,
|
|
|
|
925000000,
|
2023-01-03 15:40:03 +00:00
|
|
|
928000000,
|
2022-07-29 16:22:17 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
### User frequencies added AFTER that default list! You need to continue until you reach the end of that list
|
|
|
|
|
2023-02-20 15:55:53 +00:00
|
|
|
### If you want to disable default list and use ONLY user added frequencies from user settings file
|
2022-07-29 16:22:17 +00:00
|
|
|
Change that line
|
|
|
|
`#Add_standard_frequencies: true`
|
|
|
|
to
|
|
|
|
`Add_standard_frequencies: false`
|
|
|
|
|
|
|
|
### To add your own frequency to user list
|
|
|
|
Just add new line
|
|
|
|
`Frequency: 928000000` - where `928000000` is your frequency, keep it in that format! it should be 9 digits!
|
|
|
|
|
|
|
|
### Hopper frequency list
|
2023-02-20 15:55:53 +00:00
|
|
|
To add new frequency to hopper:
|
2022-07-29 16:22:17 +00:00
|
|
|
add new line `Hopper_frequency: 345000000`<br>
|
|
|
|
But remember! You should keep it as small as possible, or hopper functionality would be useless!<br>
|
|
|
|
If `#Add_standard_frequencies: true` is not changed<br>
|
|
|
|
Your frequencies will be added after default ones
|
|
|
|
|
|
|
|
### Default hopper list
|
|
|
|
```
|
|
|
|
315000000,
|
|
|
|
390000000,
|
2023-01-19 15:14:05 +00:00
|
|
|
433420000,
|
2022-07-29 16:22:17 +00:00
|
|
|
433920000,
|
|
|
|
868350000,
|
2023-02-20 15:55:53 +00:00
|
|
|
```
|