Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/smolbun/cc1101-frequency-finder
Get RF frequencies that are above the set threshold by hopping through a list of commonly used frequencies
https://github.com/smolbun/cc1101-frequency-finder
arduino cc1101 esp32 esp8266 raspberry-pi-pico
Last synced: about 6 hours ago
JSON representation
Get RF frequencies that are above the set threshold by hopping through a list of commonly used frequencies
- Host: GitHub
- URL: https://github.com/smolbun/cc1101-frequency-finder
- Owner: smolbun
- License: gpl-3.0
- Created: 2023-09-12T00:37:56.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-14T00:35:57.000Z (about 1 year ago)
- Last Synced: 2023-09-21T22:22:16.718Z (about 1 year ago)
- Topics: arduino, cc1101, esp32, esp8266, raspberry-pi-pico
- Language: C++
- Homepage:
- Size: 18.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Get RF frequencies that are above the set threshold by hopping through a list of commonly used frequencies
[CC1101 Module](https://a.aliexpress.com/_mK4kt1M)
[CC1101 Library by LSatan](https://github.com/LSatan/SmartRC-CC1101-Driver-Lib)
## Commonly used frequencies
```cpp
const uint8_t freqCount = 8;
const float freq[freqCount] = { 310.0, 315.0, 318.0, 330.0, 390.0, 433.0, 433.92, 868.35 };
```
## Example output```
Started!
433.92 MHz RSSI: -36
433.92 MHz RSSI: -36
433.92 MHz RSSI: -37
433.92 MHz RSSI: -38
```