Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```