SmartRC-CC1101-Driver-Lib icon indicating copy to clipboard operation
SmartRC-CC1101-Driver-Lib copied to clipboard

This driver library can be used for many libraries that use a simple RF ASK module, with the advantages of the cc1101 module. It offers many direct setting options as in SmartRF Studio and calculates...

Results 110 SmartRC-CC1101-Driver-Lib issues
Sort by recently updated
recently updated
newest added

I get the same thing. Tried 4 different cables, different USB ports. I cant get passed the initialization.. spi says connection ok. Then i do the init and it hangs...

Is there a way I could use this library to send my signal in ASK not just as a simple on/off keying but as PWM? Would I need to encode...

ELECHOUSE_cc1101.setModulation(0); ELECHOUSE_cc1101.setRxBW(500); When in FSK receiving mode, I set the bandwidth above 500kHz,and the cc1101 module will receive the correct signal. It will receive a lot of clutter signals when...

I've implemented a Alarm transmitter/receiver via NodeMCU and CC1101 antenna. The signals are received properly by the NodeMCU that sends it to my MQTT server (e.g. periodical battery check signals...

Hi, my house is using 348mhz remote but I understand that cc1101 can work on 300-348 mhz however there are some people can extend to 350 mhz thus, I try...

`CC1101recivepin = 4; CC1101sendPin = 5;// for esp8266! Receiver on pin 4 = D2. if (ELECHOUSE_cc1101.getCC1101()){ // Check the CC1101 Spi connection. Serial.println("Connection OK "); }else{ Serial.println("Connection Error"); //WebSerial.println("Connection Error");...

When cc1101 is connected to esp8266, the receiving signal distance is normal, but when it is connected to esp32 or esp32c3, the receiving distance becomes very short. By obtaining the...

Hello I have two CC1101 modules connected to different pins to an ESP32 S2 mini. they are both initialized as needed eg. ELECHOUSE_cc1101.setModul(0); ELECHOUSE_cc1101.addSpiPin(...); ELECHOUSE_cc1101.addGDO(...); [...] ELECHOUSE_cc1101.SetRx(); I cannot query...

Hi, I am trying to use a C1101 to receive values from my water meters. While testing with the most simple example "c1101_New_Receive_method_minimal" and the default pins, I got the...

RegConfigSettings() also does SPI.begin() and SPI.end(), which seems to make the code stop since there was two SPI.begin() wihtout an SPI.end() in between. Moving SpiEnd() to before RegConfigSettings() matches the...